mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-17 19:20:20 +00:00
21 lines
841 B
C
21 lines
841 B
C
#ifndef ZOITECHAT_THEME_PREFERENCES_H
|
|
#define ZOITECHAT_THEME_PREFERENCES_H
|
|
|
|
#include "../fe-gtk.h"
|
|
#include "../../common/zoitechat.h"
|
|
|
|
#include "theme-access.h"
|
|
|
|
GtkWidget *theme_preferences_create_page (GtkWindow *parent,
|
|
struct zoitechatprefs *setup_prefs,
|
|
gboolean *color_change_flag);
|
|
GtkWidget *theme_preferences_create_color_page (GtkWindow *parent,
|
|
struct zoitechatprefs *setup_prefs,
|
|
gboolean *color_change_flag);
|
|
void theme_preferences_apply_to_session (session_gui *gui, InputStyle *input_style);
|
|
void theme_preferences_stage_begin (void);
|
|
void theme_preferences_stage_commit (void);
|
|
void theme_preferences_stage_discard (void);
|
|
|
|
#endif
|