3 // Copyright (C) 2012-2014 by Werner Lemberg.
5 // This file is part of the ttfautohint library, and may only be used,
6 // modified, and distributed under the terms given in `COPYING'. By
7 // continuing to use, modify, or distribute this file you indicate that you
8 // have read `COPYING' and understand and accept it fully.
10 // The file `COPYING' mentioned in the previous paragraph is distributed
11 // with the ttfautohint library.
20 #include "ddlineedit.h"
21 #include "ttlineedit.h"
24 #include <ttfautohint.h>
25 #include <numberset.h>
38 class Drag_Drop_Line_Edit
;
39 class Tooltip_Line_Edit
;
53 bool, bool, const char*, const char*,
58 void closeEvent(QCloseEvent
*);
69 void check_no_limit();
70 void check_no_increase();
71 void check_default_stem_width();
72 void absolute_input();
73 void absolute_output();
74 void absolute_deltas();
75 void check_number_set();
76 void clear_status_bar();
83 int hinting_range_min
;
84 int hinting_range_max
;
86 int gray_strong_stem_width
;
87 int gdi_cleartype_strong_stem_width
;
88 int dw_cleartype_strong_stem_width
;
89 int increase_x_height
;
90 QString x_height_snapping_exceptions_string
;
91 number_range
* x_height_snapping_exceptions
;
92 int fallback_stem_width
;
93 int ignore_restrictions
;
94 int windows_compatibility
;
98 int default_script_idx
;
99 int fallback_script_idx
;
103 void create_layout(bool);
104 void create_horizontal_layout();
105 void create_vertical_layout();
108 QFileInfo fileinfo_input_file
;
109 QFileInfo fileinfo_deltas_file
;
110 QDateTime datetime_input_file
;
111 QDateTime datetime_deltas_file
;
113 void create_connections();
114 void create_actions();
116 void create_status_bar();
118 void read_settings();
119 void write_settings();
121 int check_filenames(const QString
&,
124 int open_files(const QString
&, FILE**,
125 const QString
&, FILE**,
126 const QString
&, FILE**);
127 int handle_error(TA_Error
, const unsigned char*, QString
);
133 Drag_Drop_Line_Edit
* input_line
;
134 QPushButton
* input_button
;
136 QLabel
* output_label
;
137 Drag_Drop_Line_Edit
* output_line
;
138 QPushButton
* output_button
;
140 QLabel
* deltas_label
;
141 Drag_Drop_Line_Edit
* deltas_line
;
142 QPushButton
* deltas_button
;
154 QLabel
* default_label
;
155 QComboBox
* default_box
;
156 QLabel
* fallback_label
;
157 QComboBox
* fallback_box
;
160 QString limit_label_text_with_key
;
161 QString limit_label_text
;
163 QCheckBox
* no_limit_box
;
164 QString no_limit_box_text_with_key
;
165 QString no_limit_box_text
;
167 QLabel
* increase_label
;
168 QString increase_label_text_with_key
;
169 QString increase_label_text
;
170 QSpinBox
* increase_box
;
171 QCheckBox
* no_increase_box
;
172 QString no_increase_box_text_with_key
;
173 QString no_increase_box_text
;
175 QLabel
* snapping_label
;
176 Tooltip_Line_Edit
* snapping_line
;
178 QLabel
* stem_width_label
;
179 QString stem_width_label_text_with_key
;
180 QString stem_width_label_text
;
181 QSpinBox
* stem_width_box
;
182 QCheckBox
* default_stem_width_box
;
183 QString default_stem_width_box_text_with_key
;
184 QString default_stem_width_box_text
;
186 QCheckBox
* wincomp_box
;
187 QCheckBox
* adjust_box
;
189 QCheckBox
* symbol_box
;
190 QCheckBox
* dehint_box
;
193 QCheckBox
* watch_box
;
194 QPushButton
* run_button
;
198 QAction
* about_Qt_act
;
203 #endif // __MAINGUI_H__