Displaying 2 results from an estimated 2 matches for "m_col".
Did you mean:
n_col
2007 Jan 25
0
[854] trunk/wxruby2/swig/classes: Add support for GridBagSizer
...nbsp  2007-01-25 18:19:11 UTC (rev 854)
</span><span class="lines">@@ -0,0 +1,23 @@
</span><ins>+// Copyright 2004-2007 by Kevin Smith
+// released under the MIT-style wxruby2 license
+
+class wxGBPosition
+{
+public:
+ wxGBPosition() : m_row(0), m_col(0) {}
+ wxGBPosition(int row, int col) : m_row(row), m_col(col) {}
+
+ // default copy ctor and assignment operator are okay.
+
+ int GetRow() const { return m_row; }
+ int GetCol() const { return m_col; }
+ void SetRow(int row) { m_row = row; }
+ void SetCol(int col) { m_col = co...
2006 Nov 15
0
[740] trunk/wxruby2: API - Make ListCtrl#get_item return a ListCtrl item corresponding to a row and
...span><del>-
</del><span class="cx"> |long m_mask|Indicates which fields are valid. See the list of valid mask flags below.|
</span><span class="cx"> |long m_itemId|The zero-based item position.|
</span><span class="cx"> |int m_col|Zero-based column, if in report mode.|
</span><span class="lines">@@ -819,8 +809,6 @@
</span><span class="cx">
</span><span class="cx"> The *m_mask* member contains a bitlist specifying which of the other fields are valid. The flags...