libInit.cc
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 10 Dec 2017 00:04:50 +0000
branchjv
changeset 6360 1091acf82a3e
parent 6085 4ecbe3a93aec
child 6361 599f4560a907
permissions -rw-r--r--
Editor theme: introduced an abstract theme class `CodeViewTheme` to provide theme support to `CodeView` and subclasses - most notably `CodeView2`.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6360
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
     1
/*
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
     2
 * $Header$
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
     3
 *
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
     4
 * DO NOT EDIT
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
     5
 * automagically generated from the projectDefinition: stx_libwidg.
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
     6
 */
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
     7
#define __INDIRECTVMINITCALLS__
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
     8
#include <stc.h>
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
     9
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    10
#ifdef WIN32
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    11
# pragma codeseg INITCODE "INITCODE"
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    12
#endif
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    13
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    14
#if defined(INIT_TEXT_SECTION) || defined(DLL_EXPORT)
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    15
DLL_EXPORT void _libstx_libwidg_Init() INIT_TEXT_SECTION;
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    16
DLL_EXPORT void _libstx_libwidg_InitDefinition() INIT_TEXT_SECTION;
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    17
#endif
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    18
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    19
extern void _ButtonController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    20
extern void _CodeViewTheme_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    21
extern void _DialogBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    22
extern void _EditTextViewCompletionSupport_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    23
extern void _EnterFieldGroup_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    24
extern void _FramedBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    25
extern void _GenericToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    26
extern void _Label_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    27
extern void _ListView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    28
extern void _ListViewController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    29
extern void _MenuEvent_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    30
extern void _ObjectView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    31
extern void _PanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    32
extern void _PopUpMenu_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    33
extern void _PullDownMenu_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    34
extern void _RadioButtonGroup_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    35
extern void _ScrollBar_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    36
extern void _ScrollableView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    37
extern void _Scroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    38
extern void _SelectionInList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    39
extern void _VariablePanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    40
extern void _VariablePanelController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    41
extern void _stx_137libwidg_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    42
extern void _Button_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    43
extern void _CheckLabel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    44
extern void _DragRectangleController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    45
extern void _EnterBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    46
extern void _FontPanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    47
extern void _HVScrollableView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    48
extern void _HorizontalPanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    49
extern void _HorizontalScrollBar_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    50
extern void _HorizontalScroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    51
extern void _InfoBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    52
extern void _MiniScroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    53
extern void _MultiColumnPanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    54
extern void _MultiSelectionInList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    55
extern void _OptionBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    56
extern void _PopUpListController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    57
extern void _SelectionInListView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    58
extern void _SequenceView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    59
extern void _TextView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    60
extern void _ToggleController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    61
extern void _VariableHorizontalPanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    62
extern void _VariableHorizontalPanelController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    63
extern void _VariableVerticalPanel_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    64
extern void _VariableVerticalPanelController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    65
extern void _VerticalPanelView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    66
extern void _WorkspaceCompletionSupport_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    67
extern void _XPToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    68
extern void _ArrowButton_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    69
extern void _EditTextView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    70
extern void _EnterBox2_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    71
extern void _FileSelectionList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    72
extern void _HorizontalMiniScroller_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    73
extern void _ListSelectionBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    74
extern void _MacOSXToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    75
extern void _MenuView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    76
extern void _PopUpList_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    77
extern void _RadioButtonController_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    78
extern void _Toggle_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    79
extern void _VistaToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    80
extern void _WarningBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    81
extern void _AdwaitaToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    82
extern void _CheckToggle_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    83
extern void _ClickMenuView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    84
extern void _EditField_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    85
extern void _FileSelectionBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    86
extern void _MacOSX2ToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    87
extern void _RadioButton_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    88
extern void _TextCollector_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    89
extern void _Windows8ToolbarIconLibrary_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    90
extern void _YesNoBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    91
extern void _FileSaveBox_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    92
extern void _Workspace_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    93
extern void _CodeView_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    94
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    95
extern void _stx_137libwidg_extensions_Init(int pass, struct __vmData__ *__pRT__, OBJ snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    96
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    97
void _libstx_libwidg_InitDefinition(int pass, struct __vmData__ *__pRT__, OBJ snd)
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    98
{
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
    99
  __BEGIN_PACKAGE2__("libstx_libwidg__DFN", _libstx_libwidg_InitDefinition, "stx:libwidg");
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   100
    _stx_137libwidg_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   101
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   102
  __END_PACKAGE__();
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   103
}
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   104
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   105
void _libstx_libwidg_Init(int pass, struct __vmData__ *__pRT__, OBJ snd)
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   106
{
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   107
  __BEGIN_PACKAGE2__("libstx_libwidg", _libstx_libwidg_Init, "stx:libwidg");
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   108
    _ButtonController_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   109
    _CodeViewTheme_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   110
    _DialogBox_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   111
    _EditTextViewCompletionSupport_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   112
    _EnterFieldGroup_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   113
    _FramedBox_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   114
    _GenericToolbarIconLibrary_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   115
    _Label_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   116
    _ListView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   117
    _ListViewController_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   118
    _MenuEvent_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   119
    _ObjectView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   120
    _PanelView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   121
    _PopUpMenu_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   122
    _PullDownMenu_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   123
    _RadioButtonGroup_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   124
    _ScrollBar_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   125
    _ScrollableView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   126
    _Scroller_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   127
    _SelectionInList_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   128
    _VariablePanel_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   129
    _VariablePanelController_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   130
    _stx_137libwidg_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   131
    _Button_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   132
    _CheckLabel_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   133
    _DragRectangleController_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   134
    _EnterBox_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   135
    _FontPanel_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   136
    _HVScrollableView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   137
    _HorizontalPanelView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   138
    _HorizontalScrollBar_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   139
    _HorizontalScroller_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   140
    _InfoBox_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   141
    _MiniScroller_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   142
    _MultiColumnPanelView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   143
    _MultiSelectionInList_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   144
    _OptionBox_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   145
    _PopUpListController_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   146
    _SelectionInListView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   147
    _SequenceView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   148
    _TextView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   149
    _ToggleController_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   150
    _VariableHorizontalPanel_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   151
    _VariableHorizontalPanelController_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   152
    _VariableVerticalPanel_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   153
    _VariableVerticalPanelController_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   154
    _VerticalPanelView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   155
    _WorkspaceCompletionSupport_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   156
    _XPToolbarIconLibrary_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   157
    _ArrowButton_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   158
    _EditTextView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   159
    _EnterBox2_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   160
    _FileSelectionList_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   161
    _HorizontalMiniScroller_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   162
    _ListSelectionBox_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   163
    _MacOSXToolbarIconLibrary_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   164
    _MenuView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   165
    _PopUpList_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   166
    _RadioButtonController_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   167
    _Toggle_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   168
    _VistaToolbarIconLibrary_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   169
    _WarningBox_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   170
    _AdwaitaToolbarIconLibrary_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   171
    _CheckToggle_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   172
    _ClickMenuView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   173
    _EditField_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   174
    _FileSelectionBox_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   175
    _MacOSX2ToolbarIconLibrary_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   176
    _RadioButton_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   177
    _TextCollector_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   178
    _Windows8ToolbarIconLibrary_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   179
    _YesNoBox_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   180
    _FileSaveBox_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   181
    _Workspace_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   182
    _CodeView_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   183
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   184
    _stx_137libwidg_extensions_Init(pass,__pRT__,snd);
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   185
  __END_PACKAGE__();
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 6085
diff changeset
   186
}