File: dlg_main_setup.h

package info (click to toggle)
scim-unikey 0.3.1%2Bdebian-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,508 kB
  • sloc: sh: 10,650; cpp: 7,490; makefile: 126; sed: 16
file content (22 lines) | stat: -rw-r--r-- 533 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <gtk/gtk.h>

typedef struct
{
    int input_method;
    int output_charset;
    
    gboolean enableSpellcheck;
    gboolean autoRestoreNonVn;
    gboolean modernStyle;
    gboolean freeMarking;
    gboolean enableMacro;
    gboolean processwatbegin;

    gchar* macrofile;
} UnikeyMainSetupOptions;

GtkWidget* unikey_main_setup_dialog_new();

void unikey_main_setup_set_values(const GtkDialog* dlg, const UnikeyMainSetupOptions *opt);
void unikey_main_setup_get_values(const GtkDialog* dlg, UnikeyMainSetupOptions *opt);