rwx 0.0.1.dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (376) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +49 -0
  3. data/COPYING +0 -0
  4. data/README.rdoc +0 -0
  5. data/Rakefile +100 -0
  6. data/VERSION +1 -0
  7. data/ext/extconf.rb +112 -0
  8. data/ext/main.cpp +432 -0
  9. data/ext/main.hpp +454 -0
  10. data/ext/rwx.cpp +472 -0
  11. data/ext/wxAboutDlg.cpp +213 -0
  12. data/ext/wxAboutDlg.hpp +19 -0
  13. data/ext/wxAnyButton.cpp +141 -0
  14. data/ext/wxAnyButton.hpp +17 -0
  15. data/ext/wxAnyChoiceDialog.cpp +93 -0
  16. data/ext/wxAnyChoiceDialog.hpp +19 -0
  17. data/ext/wxApp.cpp +205 -0
  18. data/ext/wxApp.hpp +48 -0
  19. data/ext/wxAui.hpp +19 -0
  20. data/ext/wxAuiBook.cpp +453 -0
  21. data/ext/wxAuiBook.hpp +21 -0
  22. data/ext/wxAuiManager.cpp +79 -0
  23. data/ext/wxAuiManager.hpp +18 -0
  24. data/ext/wxAuiPane.cpp +343 -0
  25. data/ext/wxAuiPane.hpp +29 -0
  26. data/ext/wxAuiToolBar.cpp +47 -0
  27. data/ext/wxAuiToolBar.hpp +17 -0
  28. data/ext/wxBitmap.cpp +368 -0
  29. data/ext/wxBitmap.hpp +60 -0
  30. data/ext/wxBitmapButton.cpp +82 -0
  31. data/ext/wxBitmapButton.hpp +17 -0
  32. data/ext/wxBitmapComboBox.cpp +284 -0
  33. data/ext/wxBitmapComboBox.hpp +22 -0
  34. data/ext/wxBitmapToggleButton.cpp +82 -0
  35. data/ext/wxBitmapToggleButton.hpp +17 -0
  36. data/ext/wxBookCtrl.cpp +633 -0
  37. data/ext/wxBookCtrl.hpp +22 -0
  38. data/ext/wxBoxSizer.cpp +60 -0
  39. data/ext/wxBoxSizer.hpp +17 -0
  40. data/ext/wxBrush.cpp +281 -0
  41. data/ext/wxBrush.hpp +28 -0
  42. data/ext/wxButton.cpp +85 -0
  43. data/ext/wxButton.hpp +17 -0
  44. data/ext/wxButtonToolBar.cpp +54 -0
  45. data/ext/wxButtonToolBar.hpp +21 -0
  46. data/ext/wxCalendarCtrl.cpp +91 -0
  47. data/ext/wxCalendarCtrl.hpp +17 -0
  48. data/ext/wxCalendarCtrlBase.cpp +55 -0
  49. data/ext/wxCalendarCtrlBase.hpp +26 -0
  50. data/ext/wxCalendarCtrlGeneric.cpp +102 -0
  51. data/ext/wxCalendarCtrlGeneric.hpp +21 -0
  52. data/ext/wxCheckBox.cpp +157 -0
  53. data/ext/wxCheckBox.hpp +17 -0
  54. data/ext/wxCheckListBox.cpp +191 -0
  55. data/ext/wxCheckListBox.hpp +20 -0
  56. data/ext/wxChoice.cpp +133 -0
  57. data/ext/wxChoice.hpp +30 -0
  58. data/ext/wxChoiceBook.cpp +90 -0
  59. data/ext/wxChoiceBook.hpp +23 -0
  60. data/ext/wxCollapsiblePane.cpp +110 -0
  61. data/ext/wxCollapsiblePane.hpp +21 -0
  62. data/ext/wxColor.cpp +435 -0
  63. data/ext/wxColor.hpp +38 -0
  64. data/ext/wxColorDialog.cpp +97 -0
  65. data/ext/wxColorDialog.hpp +19 -0
  66. data/ext/wxColorPicker.cpp +131 -0
  67. data/ext/wxColorPicker.hpp +20 -0
  68. data/ext/wxColorPickerWidget.cpp +105 -0
  69. data/ext/wxColorPickerWidget.hpp +20 -0
  70. data/ext/wxComboBox.cpp +214 -0
  71. data/ext/wxComboBox.hpp +22 -0
  72. data/ext/wxCommandEvent.cpp +45 -0
  73. data/ext/wxCommandEvent.hpp +16 -0
  74. data/ext/wxConfig.cpp +19 -0
  75. data/ext/wxConfig.hpp +17 -0
  76. data/ext/wxContextHelpButton.cpp +93 -0
  77. data/ext/wxContextHelpButton.hpp +21 -0
  78. data/ext/wxControl.cpp +90 -0
  79. data/ext/wxControl.hpp +15 -0
  80. data/ext/wxCursor.cpp +108 -0
  81. data/ext/wxCursor.hpp +25 -0
  82. data/ext/wxDC.cpp +252 -0
  83. data/ext/wxDC.hpp +18 -0
  84. data/ext/wxDataView.cpp +224 -0
  85. data/ext/wxDataView.hpp +45 -0
  86. data/ext/wxDataViewList.cpp +190 -0
  87. data/ext/wxDataViewList.hpp +17 -0
  88. data/ext/wxDatePicker.cpp +103 -0
  89. data/ext/wxDatePicker.hpp +22 -0
  90. data/ext/wxDialog.cpp +120 -0
  91. data/ext/wxDialog.hpp +17 -0
  92. data/ext/wxDirDialog.cpp +152 -0
  93. data/ext/wxDirDialog.hpp +20 -0
  94. data/ext/wxDirPicker.cpp +134 -0
  95. data/ext/wxDirPicker.hpp +28 -0
  96. data/ext/wxDirPickerWidget.cpp +127 -0
  97. data/ext/wxDirPickerWidget.hpp +20 -0
  98. data/ext/wxError.cpp +67 -0
  99. data/ext/wxError.hpp +17 -0
  100. data/ext/wxEvent.cpp +60 -0
  101. data/ext/wxEvent.hpp +17 -0
  102. data/ext/wxEvtHandler.cpp +291 -0
  103. data/ext/wxEvtHandler.hpp +85 -0
  104. data/ext/wxFileCtrl.cpp +98 -0
  105. data/ext/wxFileCtrl.hpp +17 -0
  106. data/ext/wxFileCtrlBase.cpp +219 -0
  107. data/ext/wxFileCtrlBase.hpp +33 -0
  108. data/ext/wxFileCtrlGeneric.cpp +106 -0
  109. data/ext/wxFileCtrlGeneric.hpp +19 -0
  110. data/ext/wxFileDialog.cpp +268 -0
  111. data/ext/wxFileDialog.hpp +19 -0
  112. data/ext/wxFileDirPicker.cpp +89 -0
  113. data/ext/wxFileDirPicker.hpp +29 -0
  114. data/ext/wxFileHistory.cpp +134 -0
  115. data/ext/wxFileHistory.hpp +20 -0
  116. data/ext/wxFilePicker.cpp +160 -0
  117. data/ext/wxFilePicker.hpp +28 -0
  118. data/ext/wxFilePickerWidget.cpp +139 -0
  119. data/ext/wxFilePickerWidget.hpp +20 -0
  120. data/ext/wxFont.cpp +542 -0
  121. data/ext/wxFont.hpp +37 -0
  122. data/ext/wxFontDialog.cpp +143 -0
  123. data/ext/wxFontDialog.hpp +21 -0
  124. data/ext/wxFontPicker.cpp +160 -0
  125. data/ext/wxFontPicker.hpp +21 -0
  126. data/ext/wxFontPickerWidget.cpp +128 -0
  127. data/ext/wxFontPickerWidget.hpp +20 -0
  128. data/ext/wxFrame.cpp +274 -0
  129. data/ext/wxFrame.hpp +17 -0
  130. data/ext/wxGauge.cpp +167 -0
  131. data/ext/wxGauge.hpp +17 -0
  132. data/ext/wxGrid.cpp +250 -0
  133. data/ext/wxGrid.hpp +43 -0
  134. data/ext/wxGridCellAttr.cpp +68 -0
  135. data/ext/wxGridCellAttr.hpp +26 -0
  136. data/ext/wxGridCellRenderer.cpp +120 -0
  137. data/ext/wxGridCellRenderer.hpp +30 -0
  138. data/ext/wxGridTable.cpp +111 -0
  139. data/ext/wxGridTable.hpp +47 -0
  140. data/ext/wxHyperLink.cpp +148 -0
  141. data/ext/wxHyperLink.hpp +20 -0
  142. data/ext/wxImage.cpp +884 -0
  143. data/ext/wxImage.hpp +24 -0
  144. data/ext/wxInfoBar.cpp +85 -0
  145. data/ext/wxInfoBar.hpp +21 -0
  146. data/ext/wxInfoBarBase.cpp +145 -0
  147. data/ext/wxInfoBarBase.hpp +21 -0
  148. data/ext/wxInfoBarGeneric.cpp +90 -0
  149. data/ext/wxInfoBarGeneric.hpp +21 -0
  150. data/ext/wxItemContainer.cpp +313 -0
  151. data/ext/wxItemContainer.hpp +17 -0
  152. data/ext/wxKeyEvent.cpp +35 -0
  153. data/ext/wxKeyEvent.hpp +16 -0
  154. data/ext/wxListBook.cpp +90 -0
  155. data/ext/wxListBook.hpp +21 -0
  156. data/ext/wxListBox.cpp +290 -0
  157. data/ext/wxListBox.hpp +29 -0
  158. data/ext/wxMenu.cpp +600 -0
  159. data/ext/wxMenu.hpp +17 -0
  160. data/ext/wxMenuBar.cpp +180 -0
  161. data/ext/wxMenuBar.hpp +17 -0
  162. data/ext/wxMenuItem.cpp +174 -0
  163. data/ext/wxMenuItem.hpp +17 -0
  164. data/ext/wxMessageDialog.cpp +91 -0
  165. data/ext/wxMessageDialog.hpp +19 -0
  166. data/ext/wxMessageDialogBase.cpp +152 -0
  167. data/ext/wxMessageDialogBase.hpp +18 -0
  168. data/ext/wxMessageDialogGeneric.cpp +91 -0
  169. data/ext/wxMessageDialogGeneric.hpp +19 -0
  170. data/ext/wxMouseEvent.cpp +60 -0
  171. data/ext/wxMouseEvent.hpp +16 -0
  172. data/ext/wxMultiChoiceDialog.cpp +143 -0
  173. data/ext/wxMultiChoiceDialog.hpp +19 -0
  174. data/ext/wxNoteBook.cpp +89 -0
  175. data/ext/wxNoteBook.hpp +21 -0
  176. data/ext/wxNotifyEvent.cpp +45 -0
  177. data/ext/wxNotifyEvent.hpp +16 -0
  178. data/ext/wxNumberEntryDialog.cpp +131 -0
  179. data/ext/wxNumberEntryDialog.hpp +20 -0
  180. data/ext/wxPalette.cpp +214 -0
  181. data/ext/wxPalette.hpp +24 -0
  182. data/ext/wxPanel.cpp +77 -0
  183. data/ext/wxPanel.hpp +19 -0
  184. data/ext/wxPasswordEntryDialog.cpp +141 -0
  185. data/ext/wxPasswordEntryDialog.hpp +20 -0
  186. data/ext/wxPen.cpp +323 -0
  187. data/ext/wxPen.hpp +37 -0
  188. data/ext/wxPickerBase.cpp +121 -0
  189. data/ext/wxPickerBase.hpp +28 -0
  190. data/ext/wxPoint.cpp +224 -0
  191. data/ext/wxPoint.hpp +40 -0
  192. data/ext/wxPreferences.cpp +149 -0
  193. data/ext/wxPreferences.hpp +18 -0
  194. data/ext/wxProgressDialog.cpp +171 -0
  195. data/ext/wxProgressDialog.hpp +20 -0
  196. data/ext/wxProperty.cpp +723 -0
  197. data/ext/wxProperty.hpp +16 -0
  198. data/ext/wxPropertyCell.cpp +99 -0
  199. data/ext/wxPropertyCell.hpp +16 -0
  200. data/ext/wxPropertyGrid.cpp +234 -0
  201. data/ext/wxPropertyGrid.hpp +20 -0
  202. data/ext/wxPropertyGridInterface.cpp +146 -0
  203. data/ext/wxPropertyGridInterface.hpp +33 -0
  204. data/ext/wxPropertyGridManager.cpp +257 -0
  205. data/ext/wxPropertyGridManager.hpp +20 -0
  206. data/ext/wxPropertyGridPage.cpp +65 -0
  207. data/ext/wxPropertyGridPage.hpp +20 -0
  208. data/ext/wxRadioBox.cpp +405 -0
  209. data/ext/wxRadioBox.hpp +20 -0
  210. data/ext/wxRadioButton.cpp +107 -0
  211. data/ext/wxRadioButton.hpp +16 -0
  212. data/ext/wxRearrangeCtrl.cpp +89 -0
  213. data/ext/wxRearrangeCtrl.hpp +20 -0
  214. data/ext/wxRearrangeDialog.cpp +122 -0
  215. data/ext/wxRearrangeDialog.hpp +20 -0
  216. data/ext/wxRearrangeList.cpp +94 -0
  217. data/ext/wxRearrangeList.hpp +20 -0
  218. data/ext/wxRect.cpp +281 -0
  219. data/ext/wxRect.hpp +29 -0
  220. data/ext/wxRichMessageDialog.cpp +91 -0
  221. data/ext/wxRichMessageDialog.hpp +21 -0
  222. data/ext/wxRichTextAttr.cpp +69 -0
  223. data/ext/wxRichTextAttr.hpp +28 -0
  224. data/ext/wxRichTextCtrl.cpp +484 -0
  225. data/ext/wxRichTextCtrl.hpp +21 -0
  226. data/ext/wxRichTextStyle.cpp +86 -0
  227. data/ext/wxRichTextStyle.hpp +25 -0
  228. data/ext/wxRichTextStyleSheet.cpp +497 -0
  229. data/ext/wxRichTextStyleSheet.hpp +21 -0
  230. data/ext/wxSTC.cpp +331 -0
  231. data/ext/wxSTC.hpp +21 -0
  232. data/ext/wxScrollEvent.cpp +43 -0
  233. data/ext/wxScrollEvent.hpp +16 -0
  234. data/ext/wxSearchCtrl.cpp +189 -0
  235. data/ext/wxSearchCtrl.hpp +21 -0
  236. data/ext/wxSimpleBook.cpp +89 -0
  237. data/ext/wxSimpleBook.hpp +21 -0
  238. data/ext/wxSingleChoiceDialog.cpp +147 -0
  239. data/ext/wxSingleChoiceDialog.hpp +19 -0
  240. data/ext/wxSize.cpp +206 -0
  241. data/ext/wxSize.hpp +32 -0
  242. data/ext/wxSizer.cpp +368 -0
  243. data/ext/wxSizer.hpp +23 -0
  244. data/ext/wxSizerItem.cpp +37 -0
  245. data/ext/wxSizerItem.hpp +18 -0
  246. data/ext/wxSlider.cpp +204 -0
  247. data/ext/wxSlider.hpp +21 -0
  248. data/ext/wxSpinButton.cpp +158 -0
  249. data/ext/wxSpinButton.hpp +20 -0
  250. data/ext/wxSpinCtrl.cpp +132 -0
  251. data/ext/wxSpinCtrl.hpp +21 -0
  252. data/ext/wxStartUpTip.cpp +44 -0
  253. data/ext/wxStartUpTip.hpp +16 -0
  254. data/ext/wxStaticBitmap.cpp +79 -0
  255. data/ext/wxStaticBitmap.hpp +17 -0
  256. data/ext/wxStaticBitmapBase.cpp +46 -0
  257. data/ext/wxStaticBitmapBase.hpp +22 -0
  258. data/ext/wxStaticBitmapGeneric.cpp +82 -0
  259. data/ext/wxStaticBitmapGeneric.hpp +17 -0
  260. data/ext/wxStaticBox.cpp +92 -0
  261. data/ext/wxStaticBox.hpp +22 -0
  262. data/ext/wxStaticLine.cpp +100 -0
  263. data/ext/wxStaticLine.hpp +22 -0
  264. data/ext/wxStaticText.cpp +82 -0
  265. data/ext/wxStaticText.hpp +21 -0
  266. data/ext/wxStatusBar.cpp +417 -0
  267. data/ext/wxStatusBar.hpp +17 -0
  268. data/ext/wxStream.cpp +41 -0
  269. data/ext/wxStream.hpp +46 -0
  270. data/ext/wxTaskBar.cpp +104 -0
  271. data/ext/wxTaskBar.hpp +41 -0
  272. data/ext/wxTextArea.cpp +141 -0
  273. data/ext/wxTextArea.hpp +21 -0
  274. data/ext/wxTextAttr.cpp +320 -0
  275. data/ext/wxTextAttr.hpp +28 -0
  276. data/ext/wxTextCtrl.cpp +177 -0
  277. data/ext/wxTextCtrl.hpp +30 -0
  278. data/ext/wxTextEntry.cpp +248 -0
  279. data/ext/wxTextEntry.hpp +19 -0
  280. data/ext/wxTextEntryDialog.cpp +133 -0
  281. data/ext/wxTextEntryDialog.hpp +20 -0
  282. data/ext/wxTimePicker.cpp +105 -0
  283. data/ext/wxTimePicker.hpp +22 -0
  284. data/ext/wxTimer.cpp +106 -0
  285. data/ext/wxTimer.hpp +16 -0
  286. data/ext/wxToggleButton.cpp +96 -0
  287. data/ext/wxToggleButton.hpp +21 -0
  288. data/ext/wxToolBar.cpp +85 -0
  289. data/ext/wxToolBar.hpp +17 -0
  290. data/ext/wxToolBarBase.cpp +615 -0
  291. data/ext/wxToolBarBase.hpp +17 -0
  292. data/ext/wxToolBarTool.cpp +179 -0
  293. data/ext/wxToolBarTool.hpp +16 -0
  294. data/ext/wxToolBook.cpp +96 -0
  295. data/ext/wxToolBook.hpp +23 -0
  296. data/ext/wxToplevel.cpp +125 -0
  297. data/ext/wxToplevel.hpp +25 -0
  298. data/ext/wxTreeBook.cpp +240 -0
  299. data/ext/wxTreeBook.hpp +21 -0
  300. data/ext/wxTreeCtrl.cpp +443 -0
  301. data/ext/wxTreeCtrl.hpp +66 -0
  302. data/ext/wxVariant.cpp +65 -0
  303. data/ext/wxVariant.hpp +17 -0
  304. data/ext/wxWindow.cpp +980 -0
  305. data/ext/wxWindow.hpp +35 -0
  306. data/ext/wxWizard.cpp +321 -0
  307. data/ext/wxWizard.hpp +19 -0
  308. data/ext/wxWizardPage.cpp +137 -0
  309. data/ext/wxWizardPage.hpp +38 -0
  310. data/ext/wxXRC.cpp +48 -0
  311. data/ext/wxXRC.hpp +21 -0
  312. data/old_tests/button.rb +56 -0
  313. data/old_tests/file.png +0 -0
  314. data/old_tests/green.xpm +25 -0
  315. data/old_tests/new16x16.png +0 -0
  316. data/old_tests/project.xml +10 -0
  317. data/old_tests/propertygrid.rb +51 -0
  318. data/old_tests/red.xpm +25 -0
  319. data/old_tests/ruby32x32.png +0 -0
  320. data/old_tests/status.rb +45 -0
  321. data/old_tests/test.rb +580 -0
  322. data/old_tests/wizard.xrc +40 -0
  323. data/old_tests/xrc.rb +38 -0
  324. data/rwx.gemspec +43 -0
  325. data/samples/controls/controls.rb +143 -0
  326. data/samples/controls/icons/choice.bmp +0 -0
  327. data/samples/controls/icons/choice.xpm +27 -0
  328. data/samples/controls/icons/combo.bmp +0 -0
  329. data/samples/controls/icons/combo.xpm +27 -0
  330. data/samples/controls/icons/gauge.bmp +0 -0
  331. data/samples/controls/icons/gauge.xpm +27 -0
  332. data/samples/controls/icons/list.bmp +0 -0
  333. data/samples/controls/icons/list.xpm +27 -0
  334. data/samples/controls/icons/radio.bmp +0 -0
  335. data/samples/controls/icons/radio.xpm +27 -0
  336. data/samples/controls/icons/stattext.xpm +24 -0
  337. data/samples/controls/icons/text.bmp +0 -0
  338. data/samples/controls/icons/text.xpm +27 -0
  339. data/samples/dialog/dialog_sample.rb +227 -0
  340. data/samples/sample.xpm +44 -0
  341. data/samples/widgets/icons/bmpbtn.xpm +37 -0
  342. data/samples/widgets/icons/bmpcombobox.xpm +54 -0
  343. data/samples/widgets/icons/button.xpm +54 -0
  344. data/samples/widgets/icons/checkbox.xpm +54 -0
  345. data/samples/widgets/icons/choice.xpm +27 -0
  346. data/samples/widgets/icons/choicebk.xpm +54 -0
  347. data/samples/widgets/icons/clrpicker.xpm +193 -0
  348. data/samples/widgets/icons/combobox.xpm +54 -0
  349. data/samples/widgets/icons/datepick.xpm +200 -0
  350. data/samples/widgets/icons/dirctrl.xpm +54 -0
  351. data/samples/widgets/icons/dirpicker.xpm +213 -0
  352. data/samples/widgets/icons/filepicker.xpm +214 -0
  353. data/samples/widgets/icons/fontpicker.xpm +185 -0
  354. data/samples/widgets/icons/gauge.xpm +54 -0
  355. data/samples/widgets/icons/hyperlnk.xpm +54 -0
  356. data/samples/widgets/icons/listbook.xpm +54 -0
  357. data/samples/widgets/icons/listbox.xpm +54 -0
  358. data/samples/widgets/icons/notebook.xpm +54 -0
  359. data/samples/widgets/icons/odcombobox.xpm +54 -0
  360. data/samples/widgets/icons/radiobox.xpm +54 -0
  361. data/samples/widgets/icons/scrolbar.xpm +54 -0
  362. data/samples/widgets/icons/slider.xpm +54 -0
  363. data/samples/widgets/icons/spinbtn.xpm +40 -0
  364. data/samples/widgets/icons/statbmp.xpm +40 -0
  365. data/samples/widgets/icons/statbox.xpm +54 -0
  366. data/samples/widgets/icons/stattext.xpm +54 -0
  367. data/samples/widgets/icons/text.xpm +54 -0
  368. data/samples/widgets/icons/timepick.xpm +207 -0
  369. data/samples/widgets/icons/toggle.xpm +54 -0
  370. data/samples/widgets/pages/colorpicker.rb +66 -0
  371. data/samples/widgets/pages/common.rb +17 -0
  372. data/samples/widgets/widgets.rb +29 -0
  373. data/samples/xrc/samples.xrc +46 -0
  374. data/samples/xrc/xrc_sample.rb +59 -0
  375. data/test/test_color.rb +64 -0
  376. metadata +470 -0
@@ -0,0 +1,17 @@
1
+ /*
2
+ * wxGauge.hpp
3
+ *
4
+ * Created on: 27.02.2012
5
+ * Author: hanmac
6
+ */
7
+
8
+ #ifndef WXGAUGE_HPP_
9
+ #define WXGAUGE_HPP_
10
+
11
+ #include "wxControl.hpp"
12
+
13
+ extern VALUE rb_cWXGauge;
14
+
15
+ DLL_LOCAL void Init_WXGauge(VALUE rb_mWX);
16
+
17
+ #endif /* WXGAUGE_HPP_ */
@@ -0,0 +1,250 @@
1
+ /*
2
+ * wxGrid.cpp
3
+ *
4
+ * Created on: 15.04.2012
5
+ * Author: hanmac
6
+ */
7
+
8
+
9
+ #include "wxControl.hpp"
10
+ #include "wxGrid.hpp"
11
+ #include "wxGridTable.hpp"
12
+ #include "wxGridCellRenderer.hpp"
13
+ #include "wxGridCellAttr.hpp"
14
+
15
+ #include "wxColor.hpp"
16
+ #include "wxFont.hpp"
17
+ #include "wxPen.hpp"
18
+
19
+ VALUE rb_cWXGrid, rb_cWXGridEvent;
20
+ #if wxUSE_GRID
21
+
22
+ #define _self unwrap<wxGrid*>(self)
23
+
24
+ namespace RubyWX {
25
+ namespace Grid {
26
+
27
+ macro_attr(Table,wxGridTableBase*)
28
+ macro_attr(GridLineColour,wxColour)
29
+ macro_attr(LabelBackgroundColour,wxColour)
30
+ macro_attr(LabelTextColour,wxColour)
31
+ macro_attr(LabelFont,wxFont)
32
+
33
+ macro_attr(CellHighlightColour,wxColour)
34
+ macro_attr(CellHighlightPenWidth,int)
35
+ macro_attr(CellHighlightROPenWidth,int)
36
+
37
+ macro_attr(RowLabelSize,int)
38
+ macro_attr(ColLabelSize,int)
39
+
40
+ macro_attr(DefaultRowSize,int)
41
+ macro_attr(DefaultColSize,int)
42
+
43
+ macro_attr(ColMinimalAcceptableWidth,int)
44
+ macro_attr(RowMinimalAcceptableHeight,int)
45
+
46
+
47
+ //macro_attr(SelectionMode,wxGrid::wxGridSelectionModes)
48
+
49
+ macro_attr(SelectionBackground,wxColour)
50
+ macro_attr(SelectionForeground,wxColour)
51
+
52
+ macro_attr(DefaultCellBackgroundColour,wxColour)
53
+ macro_attr(DefaultCellTextColour,wxColour)
54
+ macro_attr(DefaultCellFont,wxFont)
55
+ macro_attr(DefaultCellOverflow,bool)
56
+
57
+ macro_attr(DefaultRenderer,wxGridCellRenderer*)
58
+ //macro_attr(DefaultEditor,wxGridCellEditor*)
59
+
60
+ macro_attr_bool2(Editable,EnableEditing)
61
+
62
+ singlereturn(GetSelectedCells)
63
+ singlereturn(GetSelectedRows)
64
+ singlereturn(GetSelectedCols)
65
+
66
+ singlereturn(GetDefaultGridLinePen)
67
+
68
+ singlereturn(GetSelectionBlockTopLeft);
69
+ singlereturn(GetSelectionBlockBottomRight);
70
+
71
+ singlereturn(IsSelection)
72
+
73
+ singlefunc(AutoSize)
74
+
75
+ APP_PROTECT(wxGrid)
76
+
77
+ DLL_LOCAL VALUE _initialize(int argc,VALUE *argv,VALUE self)
78
+ {
79
+ VALUE parent,hash,name;
80
+ rb_scan_args(argc, argv, "11:",&parent,&name,&hash);
81
+
82
+ if(!_created) {
83
+ #if wxUSE_XRC
84
+ if(!loadxrc(_self,name,unwrap<wxWindow*>(parent)))
85
+ #endif
86
+ {
87
+ wxWindowID id(wxID_ANY);
88
+
89
+ if(rb_obj_is_kind_of(hash,rb_cHash)) {
90
+ set_hash_option(hash,"id",id,unwrapID);
91
+ }
92
+
93
+ _self->Create(unwrap<wxWindow*>(parent),id);
94
+ _self->SetMargins(0,0);
95
+ }
96
+
97
+ }
98
+
99
+ rb_call_super(argc,argv);
100
+
101
+ return self;
102
+ }
103
+ DLL_LOCAL VALUE _getRowSize(VALUE self,VALUE row)
104
+ {
105
+ return INT2NUM(_self->GetRowSize(NUM2INT(row)));
106
+ }
107
+
108
+ DLL_LOCAL VALUE _getColSize(VALUE self,VALUE row)
109
+ {
110
+ return INT2NUM(_self->GetColSize(NUM2INT(row)));
111
+ }
112
+
113
+ DLL_LOCAL VALUE _getCellSize(VALUE self,VALUE x,VALUE y)
114
+ {
115
+ return wrap(_self->GetCellSize(wxGridCellCoords(NUM2INT(x),NUM2INT(y))));
116
+ }
117
+
118
+ DLL_LOCAL VALUE _getRowGridLinePen(VALUE self,VALUE row)
119
+ {
120
+ return wrap(_self->GetRowGridLinePen(NUM2INT(row)));
121
+ }
122
+
123
+ DLL_LOCAL VALUE _getColGridLinePen(VALUE self,VALUE row)
124
+ {
125
+ return wrap(_self->GetColGridLinePen(NUM2INT(row)));
126
+ }
127
+
128
+
129
+ }
130
+ }
131
+
132
+ #endif
133
+
134
+ DLL_LOCAL void Init_WXGrid(VALUE rb_mWX)
135
+ {
136
+ #if 0
137
+ rb_mWX = rb_define_module("WX");
138
+ rb_cWXWindow = rb_define_class_under(rb_mWX,"Window",rb_cObject);
139
+ rb_cWXControl = rb_define_class_under(rb_mWX,"Control",rb_cWXWindow);
140
+
141
+ rb_cWXPanel = rb_define_class_under(rb_mWX,"Panel",rb_cWXControl);
142
+
143
+ rb_define_attr(rb_cWXGrid,"table",1,1);
144
+ rb_define_attr(rb_cWXGrid,"line_color",1,1);
145
+ rb_define_attr(rb_cWXGrid,"label_background_color",1,1);
146
+ rb_define_attr(rb_cWXGrid,"label_text_color",1,1);
147
+ rb_define_attr(rb_cWXGrid,"label_font",1,1);
148
+
149
+ rb_define_attr(rb_cWXGrid,"row_label_size",1,1);
150
+ rb_define_attr(rb_cWXGrid,"col_label_size",1,1);
151
+
152
+ rb_define_attr(rb_cWXGrid,"default_row_size",1,1);
153
+ rb_define_attr(rb_cWXGrid,"default_col_size",1,1);
154
+
155
+
156
+ rb_define_attr(rb_cWXGrid,"highlight_color",1,1);
157
+ rb_define_attr(rb_cWXGrid,"highlight_penwidth",1,1);
158
+ rb_define_attr(rb_cWXGrid,"highlight_ropen_width",1,1);
159
+
160
+ rb_define_attr(rb_cWXGrid,"default_renderer",1,1);
161
+
162
+ rb_define_attr(rb_cWXGrid,"minimal_width",1,1);
163
+ rb_define_attr(rb_cWXGrid,"minimal_height",1,1);
164
+
165
+ rb_define_attr(rb_cWXGrid,"editable",1,1);
166
+
167
+ #endif
168
+
169
+ #if wxUSE_GRID
170
+ using namespace RubyWX::Grid;
171
+ rb_cWXGrid = rb_define_class_under(rb_mWX,"Grid",rb_cWXPanel);
172
+ rb_define_alloc_func(rb_cWXGrid,_alloc);
173
+
174
+ rb_define_method(rb_cWXGrid,"initialize",RUBY_METHOD_FUNC(_initialize),-1);
175
+
176
+ rb_define_attr_method(rb_cWXGrid,"table",_getTable,_setTable);
177
+ rb_define_attr_method(rb_cWXGrid,"line_color",_getGridLineColour,_setGridLineColour);
178
+ rb_define_attr_method(rb_cWXGrid,"label_background_color",_getLabelBackgroundColour,_setLabelBackgroundColour);
179
+ rb_define_attr_method(rb_cWXGrid,"label_text_color",_getLabelTextColour,_setLabelTextColour);
180
+ rb_define_attr_method(rb_cWXGrid,"label_font",_getLabelFont,_setLabelFont);
181
+
182
+ rb_define_attr_method(rb_cWXGrid,"row_label_size",_getRowLabelSize,_setRowLabelSize);
183
+ rb_define_attr_method(rb_cWXGrid,"col_label_size",_getColLabelSize,_setColLabelSize);
184
+
185
+ rb_define_attr_method(rb_cWXGrid,"default_row_size",_getDefaultRowSize,_setDefaultRowSize);
186
+ rb_define_attr_method(rb_cWXGrid,"default_col_size",_getDefaultColSize,_setDefaultColSize);
187
+
188
+
189
+ rb_define_attr_method(rb_cWXGrid,"highlight_color",_getCellHighlightColour,_setCellHighlightColour);
190
+ rb_define_attr_method(rb_cWXGrid,"highlight_penwidth",_getCellHighlightPenWidth,_setCellHighlightPenWidth);
191
+ rb_define_attr_method(rb_cWXGrid,"highlight_ropen_width",_getCellHighlightROPenWidth,_setCellHighlightROPenWidth);
192
+
193
+ rb_define_attr_method(rb_cWXGrid,"default_renderer",_getDefaultRenderer,_setDefaultRenderer);
194
+
195
+ rb_define_attr_method(rb_cWXGrid,"minimal_width",_getColMinimalAcceptableWidth,_setColMinimalAcceptableWidth);
196
+ rb_define_attr_method(rb_cWXGrid,"minimal_height",_getRowMinimalAcceptableHeight,_setRowMinimalAcceptableHeight);
197
+
198
+
199
+ rb_define_attr_method(rb_cWXGrid,"editable",_getEditable,_setEditable);
200
+
201
+ rb_define_method(rb_cWXGrid,"autosize",RUBY_METHOD_FUNC(_AutoSize),0);
202
+ rb_define_method(rb_cWXGrid,"cellsize",RUBY_METHOD_FUNC(_getCellSize),2);
203
+
204
+ rb_define_method(rb_cWXGrid,"row_size",RUBY_METHOD_FUNC(_getRowSize),1);
205
+ rb_define_method(rb_cWXGrid,"col_size",RUBY_METHOD_FUNC(_getColSize),1);
206
+
207
+ rb_define_method(rb_cWXGrid,"row_grid_line_pen",RUBY_METHOD_FUNC(_getRowGridLinePen),1);
208
+ rb_define_method(rb_cWXGrid,"col_grid_line_pen",RUBY_METHOD_FUNC(_getColGridLinePen),1);
209
+
210
+
211
+ rb_define_method(rb_cWXGrid,"selection?",RUBY_METHOD_FUNC(_IsSelection),0);
212
+
213
+ rb_define_method(rb_cWXGrid,"selected_cells",RUBY_METHOD_FUNC(_GetSelectedCells),0);
214
+ rb_define_method(rb_cWXGrid,"selected_rows",RUBY_METHOD_FUNC(_GetSelectedRows),0);
215
+ rb_define_method(rb_cWXGrid,"selected_cols",RUBY_METHOD_FUNC(_GetSelectedCols),0);
216
+
217
+ rb_define_method(rb_cWXGrid,"selected_topleft",RUBY_METHOD_FUNC(_GetSelectionBlockTopLeft),0);
218
+ rb_define_method(rb_cWXGrid,"selected_bottomright",RUBY_METHOD_FUNC(_GetSelectionBlockBottomRight),0);
219
+
220
+
221
+ rb_cWXGridEvent = rb_define_class_under(rb_cWXEvent,"Grid",rb_cWXEvent);
222
+
223
+ registerEventType("grid_cell_left_click", wxEVT_GRID_CELL_LEFT_CLICK, rb_cWXGridEvent );
224
+ registerEventType("grid_cell_right_click", wxEVT_GRID_CELL_RIGHT_CLICK, rb_cWXGridEvent );
225
+ registerEventType("grid_cell_left_dclick", wxEVT_GRID_CELL_LEFT_DCLICK, rb_cWXGridEvent );
226
+ registerEventType("grid_cell_right_dclick", wxEVT_GRID_CELL_RIGHT_DCLICK, rb_cWXGridEvent );
227
+ registerEventType("grid_label_left_click", wxEVT_GRID_LABEL_LEFT_CLICK, rb_cWXGridEvent );
228
+ registerEventType("grid_label_right_click", wxEVT_GRID_LABEL_RIGHT_CLICK, rb_cWXGridEvent );
229
+ registerEventType("grid_label_left_dclick", wxEVT_GRID_LABEL_LEFT_DCLICK, rb_cWXGridEvent );
230
+ registerEventType("grid_label_right_dclick", wxEVT_GRID_LABEL_RIGHT_DCLICK, rb_cWXGridEvent );
231
+ //registerEventType("", wxEVT_GRID_ROW_SIZE, wxGridSizeEvent );
232
+ //registerEventType("", wxEVT_GRID_COL_SIZE, wxGridSizeEvent );
233
+ //registerEventType("", wxEVT_GRID_RANGE_SELECT, wxGridRangeSelectEvent );
234
+ registerEventType("grid_cell_changing", wxEVT_GRID_CELL_CHANGING, rb_cWXGridEvent );
235
+ registerEventType("grid_cell_changed", wxEVT_GRID_CELL_CHANGED, rb_cWXGridEvent );
236
+ registerEventType("grid_select_cell", wxEVT_GRID_SELECT_CELL, rb_cWXGridEvent );
237
+ registerEventType("grid_editor_shown", wxEVT_GRID_EDITOR_SHOWN, rb_cWXGridEvent );
238
+ registerEventType("grid_editor_hidden", wxEVT_GRID_EDITOR_HIDDEN, rb_cWXGridEvent );
239
+ //registerEventType("", wxEVT_GRID_EDITOR_CREATED, wxGridEditorCreatedEvent );
240
+ registerEventType("grid_cell_begin_drag", wxEVT_GRID_CELL_BEGIN_DRAG, rb_cWXGridEvent );
241
+ registerEventType("grid_col_move", wxEVT_GRID_COL_MOVE, rb_cWXGridEvent );
242
+ registerEventType("grid_col_sort", wxEVT_GRID_COL_SORT, rb_cWXGridEvent );
243
+
244
+ registerInfo<wxGrid>(rb_cWXGrid);
245
+
246
+ #endif
247
+ }
248
+
249
+
250
+
@@ -0,0 +1,43 @@
1
+ /*
2
+ * wxGrid.hpp
3
+ *
4
+ * Created on: 15.04.2012
5
+ * Author: hanmac
6
+ */
7
+
8
+ #ifndef WXGRID_HPP_
9
+ #define WXGRID_HPP_
10
+
11
+ #include "wxEvtHandler.hpp"
12
+
13
+ extern VALUE rb_cWXGrid;
14
+ void Init_WXGrid(VALUE rb_mWX);
15
+
16
+ #if wxUSE_GRID
17
+ #include <wx/grid.h>
18
+
19
+ template <>
20
+ inline VALUE wrap< wxGridCellCoords >(const wxGridCellCoords& coord)
21
+ {
22
+ VALUE result = rb_ary_new();
23
+ rb_ary_push(result,INT2NUM(coord.GetCol()));
24
+ rb_ary_push(result,INT2NUM(coord.GetRow()));
25
+ return result;
26
+ }
27
+
28
+
29
+ template <>
30
+ inline VALUE wrap< wxGridCellCoordsArray >(const wxGridCellCoordsArray &st )
31
+ {
32
+ VALUE ary = rb_ary_new();
33
+
34
+ for(size_t i = 0; i < st.Count() ; ++i)
35
+ {
36
+ rb_ary_push(ary,wrap(st.Item(i)));
37
+ }
38
+ return ary;
39
+ }
40
+
41
+ #endif
42
+
43
+ #endif /* WXGRID_HPP_ */
@@ -0,0 +1,68 @@
1
+ /*
2
+ * wxGridCellAttr.cpp
3
+ *
4
+ * Created on: 19.04.2012
5
+ * Author: hanmac
6
+ */
7
+
8
+ #include "wxApp.hpp"
9
+ #include "wxGridCellAttr.hpp"
10
+
11
+ #include "wxColor.hpp"
12
+ #include "wxFont.hpp"
13
+
14
+ VALUE rb_cWXGridCellAttr;
15
+
16
+ #if wxUSE_GRID
17
+
18
+ template <>
19
+ VALUE wrap< wxGridCellAttr >(wxGridCellAttr* window)
20
+ {
21
+ return wrapTypedPtr(window,rb_cWXGridCellAttr);
22
+ }
23
+
24
+
25
+ #define _self unwrap<wxGridCellAttr*>(self)
26
+
27
+
28
+
29
+ namespace RubyWX {
30
+ namespace GridCellAttr {
31
+
32
+ macro_attr(TextColour,wxColour)
33
+ macro_attr(BackgroundColour,wxColour)
34
+ macro_attr(Font,wxFont)
35
+
36
+ APP_PROTECT(wxGridCellAttr)
37
+
38
+ }
39
+ }
40
+
41
+ #endif
42
+
43
+ DLL_LOCAL void Init_WXGridCellAttr(VALUE rb_mWX)
44
+ {
45
+ #if 0
46
+ rb_define_attr(rb_cWXGridCellAttr,"text_color",1,1);
47
+ rb_define_attr(rb_cWXGridCellAttr,"background_color",1,1);
48
+ rb_define_attr(rb_cWXGridCellAttr,"font",1,1);
49
+
50
+ #endif
51
+
52
+ #if wxUSE_GRID
53
+ using namespace RubyWX::GridCellAttr;
54
+ rb_cWXGridCellAttr = rb_define_class_under(rb_mWX,"GridCellAttr",rb_cObject);
55
+ rb_define_alloc_func(rb_cWXGridCellAttr,_alloc);
56
+
57
+ //TODO make GridCellAttr copyable
58
+ rb_undef_method(rb_cWXGridCellAttr,"initialize_copy");
59
+ rb_undef_method(rb_cWXGridCellAttr,"_load");
60
+ rb_undef_method(rb_cWXGridCellAttr,"_dump");
61
+
62
+ rb_define_attr_method(rb_cWXGridCellAttr,"text_color",_getTextColour,_setTextColour);
63
+ rb_define_attr_method(rb_cWXGridCellAttr,"background_color",_getBackgroundColour,_setBackgroundColour);
64
+ rb_define_attr_method(rb_cWXGridCellAttr,"font",_getFont,_setFont);
65
+
66
+ registerType<wxGridCellAttr>(rb_cWXGridCellAttr);
67
+ #endif
68
+ }
@@ -0,0 +1,26 @@
1
+ /*
2
+ * wxGridCellAttr.hpp
3
+ *
4
+ * Created on: 19.04.2012
5
+ * Author: hanmac
6
+ */
7
+
8
+ #ifndef WXGRIDCELLATTR_HPP_
9
+ #define WXGRIDCELLATTR_HPP_
10
+
11
+ #include "main.hpp"
12
+
13
+ extern VALUE rb_cWXGridCellAttr;
14
+ void Init_WXGridCellAttr(VALUE rb_mWX);
15
+
16
+ #if wxUSE_GRID
17
+ #include <wx/grid.h>
18
+
19
+ template <>
20
+ VALUE wrap< wxGridCellAttr >(wxGridCellAttr* window);
21
+
22
+ #endif
23
+
24
+
25
+
26
+ #endif /* WXGRIDCELLATTR_HPP_ */
@@ -0,0 +1,120 @@
1
+ /*
2
+ * wxGridCellRenderer.cpp
3
+ *
4
+ * Created on: 18.04.2012
5
+ * Author: hanmac
6
+ */
7
+
8
+ #include "wxEvtHandler.hpp"
9
+ #include "wxGridCellAttr.hpp"
10
+ #include "wxRect.hpp"
11
+ #include "wxDC.hpp"
12
+
13
+ #define mRuby static_cast<RubyClientData*>(GetClientObject())->mRuby
14
+
15
+ VALUE rb_cWXGridCellRenderer;
16
+
17
+ #if wxUSE_GRID
18
+
19
+ template <>
20
+ VALUE wrap< wxGridCellRenderer >(wxGridCellRenderer* window)
21
+ {
22
+ return wrapTypedPtr(window,rb_cWXGridCellRenderer);
23
+ }
24
+
25
+ class RubyGridCellRenderer : public wxGridCellRenderer
26
+ {
27
+ public :
28
+ void Draw(wxGrid& grid, wxGridCellAttr& attr, wxDC& dc, const wxRect& rect, int row, int col, bool isSelected)
29
+ {
30
+ wxGridCellRenderer::Draw(grid,attr,dc,rect,row,col,isSelected);
31
+ rb_funcall(mRuby,rb_intern("draw"),7,wrap(&grid),wrap(&attr),wrap(&dc),wrap(rect),INT2NUM(row),INT2NUM(col),wrap(isSelected));
32
+ }
33
+
34
+ wxSize GetBestSize(wxGrid& grid, wxGridCellAttr& attr, wxDC& dc, int row, int col)
35
+ {
36
+ return unwrap<wxSize>(rb_funcall(mRuby,rb_intern("best_size"),5,wrap(&grid),wrap(&attr),wrap(&dc),INT2NUM(row),INT2NUM(col)));
37
+ }
38
+ wxGridCellRenderer *Clone() const
39
+ {
40
+ return new RubyGridCellRenderer;
41
+ }
42
+ };
43
+
44
+
45
+ template <>
46
+ wxGridCellRenderer* unwrap<wxGridCellRenderer*>(const VALUE &arg)
47
+ {
48
+ return unwrapTypedPtr<wxGridCellRenderer>(arg,rb_cWXGridCellRenderer);
49
+ }
50
+
51
+
52
+ #define typeRenderer(type) \
53
+ VALUE rb_cWXGridCell##type##Renderer; \
54
+ class RubyGridCell##type##Renderer : public wxGridCell##type##Renderer \
55
+ {\
56
+ public :\
57
+ void Draw(wxGrid& grid, wxGridCellAttr& attr, wxDC& dc, const wxRect& rect, int row, int col, bool isSelected)\
58
+ {\
59
+ VALUE self = mRuby;\
60
+ if(!rubycall)\
61
+ {\
62
+ rubycall = true;\
63
+ rb_funcall(self,rb_intern("draw"),7,wrap(&grid),wrap(&attr),wrap(&dc),wrap(rect),INT2NUM(row),INT2NUM(col),wrap(isSelected));\
64
+ rubycall = false;\
65
+ }else\
66
+ wxGridCell##type##Renderer::Draw(grid,attr,dc,rect,row,col,isSelected);\
67
+ }\
68
+ \
69
+ wxSize GetBestSize(wxGrid& grid, wxGridCellAttr& attr, wxDC& dc, int row, int col)\
70
+ {\
71
+ VALUE self = mRuby;\
72
+ if(!rubycall)\
73
+ {\
74
+ rubycall = true;\
75
+ wxSize size(unwrap<wxSize>(rb_funcall(self,rb_intern("best_size"),7,wrap(&grid),wrap(&attr),wrap(&dc),INT2NUM(row),INT2NUM(col))));\
76
+ rubycall = false;\
77
+ return size;\
78
+ }else\
79
+ return wxGridCell##type##Renderer::GetBestSize(grid,attr,dc,row,col);\
80
+ \
81
+ }\
82
+ private:\
83
+ bool rubycall;\
84
+ };
85
+
86
+ typeRenderer(String)
87
+ typeRenderer(AutoWrapString)
88
+
89
+ typeRenderer(Bool)
90
+ typeRenderer(Float)
91
+ typeRenderer(Number)
92
+ typeRenderer(Enum)
93
+
94
+ #if wxUSE_DATETIME
95
+ typeRenderer(DateTime)
96
+ #endif
97
+
98
+ namespace RubyWX {
99
+ namespace GridCellRenderer {
100
+ //macro_attr(Path,wxString)
101
+
102
+ APP_PROTECT(RubyGridCellRenderer);
103
+
104
+ }
105
+ }
106
+
107
+ #endif
108
+
109
+ DLL_LOCAL void Init_WXGridCellRenderer(VALUE rb_mWX)
110
+ {
111
+ #if wxUSE_GRID
112
+ using namespace RubyWX::GridCellRenderer;
113
+ rb_cWXGridCellRenderer = rb_define_class_under(rb_mWX,"GridCellRenderer",rb_cObject);
114
+ rb_define_alloc_func(rb_cWXGridCellRenderer,_alloc);
115
+
116
+ registerType<wxGridCellRenderer>(rb_cWXGridCellRenderer);
117
+ #endif
118
+ }
119
+
120
+