2011-02-24 09:27:21 +00:00
|
|
|
struct Settings : public configuration {
|
|
|
|
unsigned frameGeometryX;
|
|
|
|
unsigned frameGeometryY;
|
|
|
|
unsigned frameGeometryWidth;
|
|
|
|
unsigned frameGeometryHeight;
|
2011-02-27 09:11:01 +00:00
|
|
|
unsigned menuGeometryHeight;
|
|
|
|
unsigned statusGeometryHeight;
|
2011-02-24 09:27:21 +00:00
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
Settings();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pFont;
|
|
|
|
struct pWindow;
|
|
|
|
struct pMenu;
|
|
|
|
struct pLayout;
|
|
|
|
struct pWidget;
|
|
|
|
|
|
|
|
struct pObject {
|
|
|
|
bool locked;
|
|
|
|
|
|
|
|
pObject() {
|
|
|
|
locked = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pOS : public pObject {
|
2011-03-22 12:56:49 +00:00
|
|
|
static Font defaultFont;
|
|
|
|
|
2011-02-27 09:05:10 +00:00
|
|
|
static Geometry availableGeometry();
|
|
|
|
static Geometry desktopGeometry();
|
2011-02-24 09:27:21 +00:00
|
|
|
static string fileLoad(Window &parent, const string &path, const lstring &filter);
|
|
|
|
static string fileSave(Window &parent, const string &path, const lstring &filter);
|
|
|
|
static string folderSelect(Window &parent, const string &path);
|
|
|
|
static void main();
|
2011-02-27 09:05:10 +00:00
|
|
|
static bool pendingEvents();
|
|
|
|
static void processEvents();
|
2011-02-24 09:27:21 +00:00
|
|
|
static void quit();
|
|
|
|
|
|
|
|
static void initialize();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pFont : public pObject {
|
|
|
|
Font &font;
|
|
|
|
PangoFontDescription *gtkFont;
|
2011-03-22 12:56:49 +00:00
|
|
|
PangoLayout *gtkLayout;
|
2011-02-24 09:27:21 +00:00
|
|
|
|
2011-03-22 12:56:49 +00:00
|
|
|
Geometry geometry(const string &text);
|
2011-02-24 09:27:21 +00:00
|
|
|
void setBold(bool bold);
|
|
|
|
void setFamily(const string &family);
|
|
|
|
void setItalic(bool italic);
|
|
|
|
void setSize(unsigned size);
|
|
|
|
void setUnderline(bool underline);
|
|
|
|
|
|
|
|
pFont(Font &font) : font(font) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pMessageWindow : public pObject {
|
|
|
|
static MessageWindow::Response information(Window &parent, const string &text, MessageWindow::Buttons buttons);
|
|
|
|
static MessageWindow::Response question(Window &parent, const string &text, MessageWindow::Buttons buttons);
|
|
|
|
static MessageWindow::Response warning(Window &parent, const string &text, MessageWindow::Buttons buttons);
|
|
|
|
static MessageWindow::Response critical(Window &parent, const string &text, MessageWindow::Buttons buttons);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pWindow : public pObject {
|
|
|
|
Window &window;
|
|
|
|
GtkWidget *widget;
|
|
|
|
GtkWidget *menuContainer;
|
|
|
|
GtkWidget *formContainer;
|
|
|
|
GtkWidget *statusContainer;
|
|
|
|
GtkWidget *menu;
|
|
|
|
GtkWidget *status;
|
|
|
|
|
|
|
|
void append(Layout &layout);
|
|
|
|
void append(Menu &menu);
|
|
|
|
void append(Widget &widget);
|
|
|
|
bool focused();
|
2011-02-27 09:05:10 +00:00
|
|
|
Geometry frameMargin();
|
2011-02-24 09:27:21 +00:00
|
|
|
Geometry geometry();
|
|
|
|
void setBackgroundColor(uint8_t red, uint8_t green, uint8_t blue);
|
|
|
|
void setFocused();
|
|
|
|
void setFullScreen(bool fullScreen);
|
|
|
|
void setGeometry(const Geometry &geometry);
|
|
|
|
void setMenuFont(Font &font);
|
|
|
|
void setMenuVisible(bool visible);
|
|
|
|
void setResizable(bool resizable);
|
|
|
|
void setStatusFont(Font &font);
|
|
|
|
void setStatusText(const string &text);
|
|
|
|
void setStatusVisible(bool visible);
|
|
|
|
void setTitle(const string &text);
|
|
|
|
void setVisible(bool visible);
|
|
|
|
void setWidgetFont(Font &font);
|
|
|
|
|
|
|
|
pWindow(Window &window) : window(window) {}
|
|
|
|
void constructor();
|
2011-02-27 09:11:01 +00:00
|
|
|
unsigned menuHeight();
|
|
|
|
unsigned statusHeight();
|
2011-02-24 09:27:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct pAction : public pObject {
|
|
|
|
Action &action;
|
|
|
|
GtkWidget *widget;
|
|
|
|
|
|
|
|
void setEnabled(bool enabled);
|
|
|
|
void setVisible(bool visible);
|
|
|
|
|
|
|
|
pAction(Action &action) : action(action) {}
|
|
|
|
void constructor();
|
|
|
|
virtual void setFont(Font &font);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pMenu : public pAction {
|
|
|
|
Menu &menu;
|
|
|
|
GtkWidget *submenu;
|
|
|
|
|
|
|
|
void append(Action &action);
|
|
|
|
void setText(const string &text);
|
|
|
|
|
|
|
|
pMenu(Menu &menu) : pAction(menu), menu(menu) {}
|
|
|
|
void constructor();
|
|
|
|
void setFont(Font &font);
|
|
|
|
};
|
|
|
|
|
2011-02-27 09:05:10 +00:00
|
|
|
struct pSeparator : public pAction {
|
|
|
|
Separator &separator;
|
2011-02-24 09:27:21 +00:00
|
|
|
|
2011-02-27 09:05:10 +00:00
|
|
|
pSeparator(Separator &separator) : pAction(separator), separator(separator) {}
|
2011-02-24 09:27:21 +00:00
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
2011-02-27 09:05:10 +00:00
|
|
|
struct pItem : public pAction {
|
|
|
|
Item &item;
|
2011-02-24 09:27:21 +00:00
|
|
|
|
|
|
|
void setText(const string &text);
|
|
|
|
|
2011-02-27 09:05:10 +00:00
|
|
|
pItem(Item &item) : pAction(item), item(item) {}
|
2011-02-24 09:27:21 +00:00
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
2011-02-27 09:05:10 +00:00
|
|
|
struct pCheckItem : public pAction {
|
|
|
|
CheckItem &checkItem;
|
2011-02-24 09:27:21 +00:00
|
|
|
|
|
|
|
bool checked();
|
|
|
|
void setChecked(bool checked);
|
|
|
|
void setText(const string &text);
|
|
|
|
|
2011-02-27 09:05:10 +00:00
|
|
|
pCheckItem(CheckItem &checkItem) : pAction(checkItem), checkItem(checkItem) {}
|
2011-02-24 09:27:21 +00:00
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
2011-02-27 09:05:10 +00:00
|
|
|
struct pRadioItem : public pAction {
|
|
|
|
RadioItem &radioItem;
|
2011-02-24 09:27:21 +00:00
|
|
|
|
|
|
|
bool checked();
|
|
|
|
void setChecked();
|
2011-02-27 09:05:10 +00:00
|
|
|
void setGroup(const reference_array<RadioItem&> &group);
|
2011-02-24 09:27:21 +00:00
|
|
|
void setText(const string &text);
|
|
|
|
|
2011-02-27 09:05:10 +00:00
|
|
|
pRadioItem(RadioItem &radioItem) : pAction(radioItem), radioItem(radioItem) {}
|
2011-02-24 09:27:21 +00:00
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pWidget : public pObject {
|
|
|
|
Widget &widget;
|
|
|
|
GtkWidget *gtkWidget;
|
|
|
|
pWindow *parentWindow;
|
|
|
|
|
|
|
|
bool enabled();
|
2011-03-22 12:56:49 +00:00
|
|
|
Font& font();
|
|
|
|
virtual Geometry minimumGeometry();
|
2011-02-24 09:27:21 +00:00
|
|
|
void setEnabled(bool enabled);
|
|
|
|
virtual void setFocused();
|
|
|
|
virtual void setFont(Font &font);
|
2011-03-26 11:31:07 +00:00
|
|
|
virtual void setGeometry(const Geometry &geometry);
|
2011-02-24 09:27:21 +00:00
|
|
|
void setVisible(bool visible);
|
|
|
|
|
|
|
|
pWidget(Widget &widget) : widget(widget) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pButton : public pWidget {
|
|
|
|
Button &button;
|
|
|
|
|
2011-03-22 12:56:49 +00:00
|
|
|
Geometry minimumGeometry();
|
2011-02-24 09:27:21 +00:00
|
|
|
void setText(const string &text);
|
|
|
|
|
|
|
|
pButton(Button &button) : pWidget(button), button(button) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
2011-03-26 11:31:07 +00:00
|
|
|
struct pCanvas : public pWidget {
|
|
|
|
Canvas &canvas;
|
|
|
|
uint32_t *bufferRGB;
|
|
|
|
uint32_t *bufferBGR;
|
|
|
|
|
|
|
|
uint32_t* buffer();
|
|
|
|
void setGeometry(const Geometry &geometry);
|
|
|
|
void update();
|
|
|
|
|
|
|
|
pCanvas(Canvas &canvas) : pWidget(canvas), canvas(canvas) {}
|
|
|
|
void constructor();
|
|
|
|
void redraw();
|
|
|
|
};
|
|
|
|
|
2011-02-24 09:27:21 +00:00
|
|
|
struct pCheckBox : public pWidget {
|
|
|
|
CheckBox &checkBox;
|
|
|
|
|
|
|
|
bool checked();
|
2011-03-22 12:56:49 +00:00
|
|
|
Geometry minimumGeometry();
|
2011-02-24 09:27:21 +00:00
|
|
|
void setChecked(bool checked);
|
|
|
|
void setText(const string &text);
|
|
|
|
|
|
|
|
pCheckBox(CheckBox &checkBox) : pWidget(checkBox), checkBox(checkBox) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pComboBox : public pWidget {
|
|
|
|
ComboBox &comboBox;
|
|
|
|
unsigned itemCounter;
|
|
|
|
|
|
|
|
void append(const string &text);
|
2011-03-22 12:56:49 +00:00
|
|
|
Geometry minimumGeometry();
|
2011-02-24 09:27:21 +00:00
|
|
|
void reset();
|
|
|
|
unsigned selection();
|
|
|
|
void setSelection(unsigned row);
|
|
|
|
|
|
|
|
pComboBox(ComboBox &comboBox) : pWidget(comboBox), comboBox(comboBox) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pHexEdit : public pWidget {
|
|
|
|
HexEdit &hexEdit;
|
|
|
|
GtkWidget *container;
|
|
|
|
GtkWidget *subWidget;
|
|
|
|
GtkWidget *scrollBar;
|
|
|
|
GtkTextBuffer *textBuffer;
|
|
|
|
GtkTextMark *textCursor;
|
|
|
|
|
|
|
|
void setColumns(unsigned columns);
|
|
|
|
void setLength(unsigned length);
|
|
|
|
void setOffset(unsigned offset);
|
|
|
|
void setRows(unsigned rows);
|
|
|
|
void update();
|
|
|
|
|
|
|
|
pHexEdit(HexEdit &hexEdit) : pWidget(hexEdit), hexEdit(hexEdit) {}
|
|
|
|
void constructor();
|
|
|
|
unsigned cursorPosition();
|
|
|
|
bool keyPress(unsigned scancode);
|
|
|
|
void scroll(unsigned position);
|
|
|
|
void setCursorPosition(unsigned position);
|
|
|
|
void setScroll();
|
|
|
|
void updateScroll();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pHorizontalSlider : public pWidget {
|
|
|
|
HorizontalSlider &horizontalSlider;
|
|
|
|
|
2011-03-22 12:56:49 +00:00
|
|
|
Geometry minimumGeometry();
|
2011-02-24 09:27:21 +00:00
|
|
|
unsigned position();
|
|
|
|
void setLength(unsigned length);
|
|
|
|
void setPosition(unsigned position);
|
|
|
|
|
|
|
|
pHorizontalSlider(HorizontalSlider &horizontalSlider) : pWidget(horizontalSlider), horizontalSlider(horizontalSlider) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pLabel : public pWidget {
|
|
|
|
Label &label;
|
|
|
|
|
2011-03-22 12:56:49 +00:00
|
|
|
Geometry minimumGeometry();
|
2011-02-24 09:27:21 +00:00
|
|
|
void setText(const string &text);
|
|
|
|
|
|
|
|
pLabel(Label &label) : pWidget(label), label(label) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pLineEdit : public pWidget {
|
|
|
|
LineEdit &lineEdit;
|
|
|
|
|
2011-03-22 12:56:49 +00:00
|
|
|
Geometry minimumGeometry();
|
2011-02-24 09:27:21 +00:00
|
|
|
void setEditable(bool editable);
|
|
|
|
void setText(const string &text);
|
|
|
|
string text();
|
|
|
|
|
|
|
|
pLineEdit(LineEdit &lineEdit) : pWidget(lineEdit), lineEdit(lineEdit) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pListView : public pWidget {
|
|
|
|
ListView &listView;
|
|
|
|
GtkWidget *subWidget;
|
|
|
|
GtkListStore *store;
|
|
|
|
struct GtkColumn {
|
|
|
|
GtkCellRenderer *renderer;
|
|
|
|
GtkTreeViewColumn *column;
|
|
|
|
GtkWidget *label;
|
|
|
|
};
|
|
|
|
linear_vector<GtkColumn> column;
|
|
|
|
|
|
|
|
void append(const lstring &text);
|
2011-02-27 09:05:10 +00:00
|
|
|
void autoSizeColumns();
|
2011-02-24 09:27:21 +00:00
|
|
|
bool checked(unsigned row);
|
|
|
|
void modify(unsigned row, const lstring &text);
|
|
|
|
void reset();
|
2011-02-27 09:05:10 +00:00
|
|
|
bool selected();
|
|
|
|
unsigned selection();
|
2011-02-24 09:27:21 +00:00
|
|
|
void setCheckable(bool checkable);
|
|
|
|
void setChecked(unsigned row, bool checked);
|
|
|
|
void setHeaderText(const lstring &text);
|
|
|
|
void setHeaderVisible(bool visible);
|
2011-02-27 09:05:10 +00:00
|
|
|
void setSelected(bool selected);
|
2011-02-24 09:27:21 +00:00
|
|
|
void setSelection(unsigned row);
|
|
|
|
|
|
|
|
pListView(ListView &listView) : pWidget(listView), listView(listView) {}
|
|
|
|
void constructor();
|
|
|
|
void create();
|
|
|
|
void setFocused();
|
|
|
|
void setFont(Font &font);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pProgressBar : public pWidget {
|
|
|
|
ProgressBar &progressBar;
|
|
|
|
|
2011-03-22 12:56:49 +00:00
|
|
|
Geometry minimumGeometry();
|
2011-02-24 09:27:21 +00:00
|
|
|
void setPosition(unsigned position);
|
|
|
|
|
|
|
|
pProgressBar(ProgressBar &progressBar) : pWidget(progressBar), progressBar(progressBar) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pRadioBox : public pWidget {
|
|
|
|
RadioBox &radioBox;
|
|
|
|
|
|
|
|
bool checked();
|
2011-03-22 12:56:49 +00:00
|
|
|
Geometry minimumGeometry();
|
2011-02-24 09:27:21 +00:00
|
|
|
void setChecked();
|
|
|
|
void setGroup(const reference_array<RadioBox&> &group);
|
|
|
|
void setText(const string &text);
|
|
|
|
|
|
|
|
pRadioBox(RadioBox &radioBox) : pWidget(radioBox), radioBox(radioBox) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pTextEdit : public pWidget {
|
|
|
|
TextEdit &textEdit;
|
|
|
|
GtkWidget *subWidget;
|
|
|
|
GtkTextBuffer *textBuffer;
|
|
|
|
|
|
|
|
void setCursorPosition(unsigned position);
|
|
|
|
void setEditable(bool editable);
|
|
|
|
void setText(const string &text);
|
|
|
|
void setWordWrap(bool wordWrap);
|
|
|
|
string text();
|
|
|
|
|
|
|
|
pTextEdit(TextEdit &textEdit) : pWidget(textEdit), textEdit(textEdit) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pVerticalSlider : public pWidget {
|
|
|
|
VerticalSlider &verticalSlider;
|
|
|
|
|
2011-03-22 12:56:49 +00:00
|
|
|
Geometry minimumGeometry();
|
2011-02-24 09:27:21 +00:00
|
|
|
unsigned position();
|
|
|
|
void setLength(unsigned length);
|
|
|
|
void setPosition(unsigned position);
|
|
|
|
|
|
|
|
pVerticalSlider(VerticalSlider &verticalSlider) : pWidget(verticalSlider), verticalSlider(verticalSlider) {}
|
|
|
|
void constructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pViewport : public pWidget {
|
|
|
|
Viewport &viewport;
|
|
|
|
|
|
|
|
uintptr_t handle();
|
|
|
|
|
|
|
|
pViewport(Viewport &viewport) : pWidget(viewport), viewport(viewport) {}
|
|
|
|
void constructor();
|
|
|
|
};
|