diff --git a/contrib/utils/wxrcedit/Makefile.in b/contrib/utils/wxrcedit/Makefile.in index f4db066569..2a58488b7e 100644 --- a/contrib/utils/wxrcedit/Makefile.in +++ b/contrib/utils/wxrcedit/Makefile.in @@ -46,9 +46,16 @@ DATAFILES = \ df/statictext.df \ df/textctrl.df \ df/toolbar_item.df \ + df/tool.df \ + df/toolbar.df \ df/window.df \ - df/listbox.df - + df/listbox.df \ + df/bitmapbutton.df \ + df/calendarctrl.df \ + df/listctrl.df \ + df/scrollbar.df \ + df/staticbox.df \ + df/treectrl.df APPEXTRALIBS=$(top_builddir)/lib/libwxxml.@WX_TARGET_LIBRARY_TYPE@ APPEXTRADEFS=-I$(top_srcdir)/contrib/include diff --git a/contrib/utils/wxrcedit/df/bitmapbutton.df b/contrib/utils/wxrcedit/df/bitmapbutton.df new file mode 100644 index 0000000000..935e18e24f --- /dev/null +++ b/contrib/utils/wxrcedit/df/bitmapbutton.df @@ -0,0 +1,5 @@ +node bitmapbutton +var bitmap of text +var default of bool +var style of flags wxBU_AUTODRAW,wxBU_LEFT,wxBU_RIGHT,wxBU_TOP,wxBU_BOTTOM +derived from control diff --git a/contrib/utils/wxrcedit/df/calendarctrl.df b/contrib/utils/wxrcedit/df/calendarctrl.df new file mode 100644 index 0000000000..45eae54d9f --- /dev/null +++ b/contrib/utils/wxrcedit/df/calendarctrl.df @@ -0,0 +1,3 @@ +node calendarctrl +var style of flags wxCAL_SUNDAY_FIRST,wxCAL_MONDAY_FIRST,wxCAL_SHOW_HOLIDAYS,wxCAL_NO_YEAR_CHANGE,wxCAL_NO_MONTH_CHANGE +derived from control diff --git a/contrib/utils/wxrcedit/df/listctrl.df b/contrib/utils/wxrcedit/df/listctrl.df new file mode 100644 index 0000000000..aa635575c1 --- /dev/null +++ b/contrib/utils/wxrcedit/df/listctrl.df @@ -0,0 +1,3 @@ +node listctrl +var style of flags wxLC_LIST,wxLC_REPORT,wxLC_REPORT,wxLC_ICON,wxLC_SMALL_ICON,wxLC_ALIGN_TOP,wxLC_ALIGN_LEFT,wxLC_AUTOARRANGE,wxLC_USER_TEXT,wxLC_EDIT_LABELS,wxLC_NO_HEADER,wxLC_SINGLE_SEL,wxLC_SORT_ASCENDING,wxLC_SORT_DESCENDING +derived from control diff --git a/contrib/utils/wxrcedit/df/scrollbar.df b/contrib/utils/wxrcedit/df/scrollbar.df new file mode 100644 index 0000000000..5cc71e0c72 --- /dev/null +++ b/contrib/utils/wxrcedit/df/scrollbar.df @@ -0,0 +1,7 @@ +node scrollbar +var style of flags wxSB_HORIZONTAL,wxSB_VERTICAL +var value of integer +var thumbsize of integer +var range of integer +var pagesize of integer +derived from control \ No newline at end of file diff --git a/contrib/utils/wxrcedit/df/staticbox.df b/contrib/utils/wxrcedit/df/staticbox.df new file mode 100644 index 0000000000..ddd135b2b8 --- /dev/null +++ b/contrib/utils/wxrcedit/df/staticbox.df @@ -0,0 +1,3 @@ +node staticbox +var label of text +derived from control diff --git a/contrib/utils/wxrcedit/df/treectrl.df b/contrib/utils/wxrcedit/df/treectrl.df new file mode 100644 index 0000000000..bee9db8674 --- /dev/null +++ b/contrib/utils/wxrcedit/df/treectrl.df @@ -0,0 +1,3 @@ +node treectrl +var style of flags wxTR_HAS_BUTTONS,wxTR_EDIT_LABELS,wxTR_MULTIPLE +derived from control