Displaying 20 results from an estimated 22 matches for "isok".
Did you mean:
iso
2007 May 17
0
[1019] trunk/wxruby2/swig/classes/include/wxPageSetupDialogData.h: Added IsOk that was missing.
...ound:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[1019] trunk/wxruby2/swig/classes/include/wxPageSetupDialogData.h: Added IsOk that was missing.</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd>1019</dd>
<dt>Author</dt> <dd>seanlong</dd>
<dt>Date</dt> <dd>2007-05-17 13:39:06 -0400 (Thu, 17 May 2007)<...
2006 Apr 19
1
Rubyfication of wxWindows
...e aliases for all
renamed methods?
Example:
wxPen::Ok
*bool* *Ok*() *const*
Returns true if the pen is initialised.
The ''correct'' Ruby way to do this would be: ''ok?'' Should we also
keep ''ok''?
Another example:
wxCaret::IsOk
*bool* *IsOk*() *const*
Returns true if the caret was created successfully.
One possibly ''correct'' Ruby way to do this, also, is: ''ok?'' Should we
also have an ''is_ok?'' How about ''is_ok''?
There are quite a number of IsXx...
2015 Jul 11
3
Re: Migrate Win2k3 to KVM
...restart</on_reboot>
<on_crash>restart</on_crash>
<devices>
<emulator>/usr/bin/kvm-spice</emulator>
<disk type='file' device='cdrom'>
<driver name='qemu' type='raw'/>
<source file='/kvm-img/isok/Windows_2003_Server.iso'/>
<target dev='hdc' bus='ide'/>
<readonly/>
<address type='drive' controller='0' bus='1' target='0' unit='0'/>
</disk>
<disk type='block' device='...
2015 Jul 11
0
Re: Migrate Win2k3 to KVM
...boot>restart</on_reboot> <on_crash>restart</on_crash>
> <devices> <emulator>/usr/bin/kvm-spice</emulator> <disk type='file'
> device='cdrom'> <driver name='qemu' type='raw'/> <source
> file='/kvm-img/isok/Windows_2003_Server.iso'/> <target dev='hdc'
> bus='ide'/> <readonly/> <address type='drive' controller='0'
> bus='1' target='0' unit='0'/> </disk> <disk type='block'
> device='disk'&g...
2007 Mar 18
0
[891] branches/wxruby2/wxwidgets_282: Change method name in 2.6 -> 2.8 API
...t;> h2. Methods
</span><span class="cx">
</span><span class="cx"> * "AcceleratorTable.new":#AcceleratorTable_new
</span><del>-* "AcceleratorTable#ok":#AcceleratorTable_ok
</del><ins>+* "AcceleratorTable#isok":#AcceleratorTable_isok
</ins><span class="cx">
</span><span class="cx"> </div>
</span><span class="cx">
</span><span class="lines">@@ -60,9 +60,9 @@
</span><span class="cx">...
2015 Jul 11
3
Migrate Win2k3 to KVM
Hi,
I made a disk image with CloneZilla from the original physical machine.
That image was restored on an iSCSI volume.
It isn't booting. I got BSOD.
I tried IDE, SATA, SCSI disk type without any success.
I tried to using virtio driver and if I use my image+W2k3 install CD+virtio
VFD the Windows repair console see the disk and I can use the repair
console with my image but the windows not
2006 Dec 05
0
[779] trunk/wxruby2: Added TreeCtrl#traverse method and documentation
...p   wxTreeItemId child = tree_ctrl->GetFirstChild(base_id, cookie);
</span><span class="cx">                 while ( child.IsOk() )
</span><span class="cx">                  {
</span><del>-        &am...
2007 Apr 13
0
[955] branches/wxruby2/wxwidgets_282/swig/classes/include/wxIcon.h: Change Icon.ok to Icon.is_ok (2.8)
...p, not defined here
</span><span class="cx"> #ifndef __WXGTK__
</span><del>-        bool Ok() const;
</del><ins>+        bool IsOk() const;
</ins><span class="cx"> #endif
</span><span class="cx">
</span><span class="cx"> // create from bitmap (which should have a mask unless it''s monochrome):
</span></span></pre>
</div>
<...
2006 Dec 21
0
[792] trunk/wxruby2/swig/classes/include/wxDisplay.h: Added missing class, but a wrapper needs some tweaking
...r the MIT-style wxruby2 license
+
+#if !defined(_wxDisplay_h_)
+#define _wxDisplay_h_
+class wxDisplay
+{
+public:
+ wxDisplay(size_t index = 0);
+ static size_t GetCount();
+ static int GetFromPoint(const wxPoint& pt);
+ static int GetFromWindow(wxWindow *window);
+ virtual bool IsOk() const { return true; }
+ virtual wxRect GetGeometry() const = 0;
+ virtual wxString GetName() const = 0;
+ virtual bool IsPrimary() const { return m_index == 0; }
+ virtual wxArrayVideoModes
+ GetModes(const wxVideoMode& mode = wxDefaultVideoMode) const = 0;
+ virtual wx...
2007 Mar 21
0
[905] branches/wxruby2/wxwidgets_282/swig/classes/include/wxColour.h: Wx::Colour API 2.6 -> 2.8 - one more place alpha argument is needed
...nbsp       2007-03-21 10:22:10 UTC (rev 905)
</span><span class="lines">@@ -18,7 +18,7 @@
</span><span class="cx"> unsigned char Green() const;
</span><span class="cx"> bool IsOk() const;
</span><span class="cx"> unsigned char Red() const;
</span><del>- void Set(const unsigned char red , const unsigned char green , const unsigned char blue ) ;
</del><ins>+ void Set(const unsigned char red , const unsigned char green , c...
2007 May 04
0
[1010] trunk/wxruby2: PrintPreview ok method name changed to is_ok, update sample
...><span class="cx"> virtual int GetMaxPage() const;
</span><span class="cx"> virtual int GetMinPage() const;
</span><span class="cx">
</span><del>- virtual bool Ok() const;
</del><ins>+ virtual bool IsOk() const;
</ins><span class="cx"> virtual void SetOk(bool ok);
</span><span class="cx"> };
</span><span class="cx">
</span></span></pre>
</div>
</div>
</body>
</html>
2006 Dec 23
0
[797] trunk/wxruby2/swig/classes/TreeCtrl.i: Traverse method moved to wxSugar
...end wxTreeCtrl {
</span><del>-
- VALUE traverse(const wxTreeItemId& item_id = wxTreeItemId() )
- {
-        wxTreeItemId base_id;
-
-        if ( item_id.IsOk() )
-         {
-                base_id = item_id;
-     &nb...
2006 Nov 16
0
[741] trunk/wxruby2: Fix get_item_data, hiding TreeItemData messiness, fix GC-ing (Alex Fenton)
...</span><span class="cx">
</span><del>-A tree control presents information as a hierarchy, with items that may be expanded
-to show further items. Items in a tree control are referenced by TreeItemId handles,
-which may be tested for validity by calling TreeItemId::IsOk.
</del><ins>+A tree control presents information as a hierarchy, with items that may
+be expanded to show further items. Desktop OSes commonly make use of
+this type of control to present a navigable representation of folders
+and files on a hard drive.
</ins><span class="...
2007 Mar 28
0
[923] branches/wxruby2/wxwidgets_282: Changes 2.6 -> 2.8 Wx API; remove unsupported methods and examples from doc
...gt;<span class="cx"> h2. Methods
</span><span class="cx">
</span><span class="cx"> * "Cursor.new":#Cursor_new
</span><del>-* "Cursor#ok":#Cursor_ok
</del><ins>+* "Cursor#is_ok":#Cursor_isok
</ins><span class="cx">
</span><span class="cx"> </div>
</span><span class="cx">
</span><span class="cx">
</span><span class="cx"> h3(#Cursor_new). Cursor.new
</span><span...
2007 Mar 30
0
[933] branches/wxruby2/wxwidgets_282: Font API 2.6 -> 2.8, corrections to Event doc
...t_getunderlined
</span><span class="cx"> * "Font#get_weight":#Font_getweight
</span><span class="cx"> * "Font#new":#Font_new
</span><del>-* "Font#ok":#Font_ok
</del><ins>+* "Font#is_ok":#Font_isok
</ins><span class="cx"> * "Font#set_default_encoding":#Font_setdefaultencoding
</span><span class="cx"> * "Font#set_face_name":#Font_setfacename
</span><span class="cx"> * "Font#set_family":#Font_setfami...
2007 Mar 21
0
[904] branches/wxruby2/wxwidgets_282: Changes in Wx::Colour API 2.6 -> 2.8
...lour_getpixel
</span><ins>+* "Colour#get_as_string":#Colour_getasstring
</ins><span class="cx"> * "Colour#green":#Colour_green
</span><del>-* "Colour#ok":#Colour_ok
</del><ins>+* "Colour#is_ok":#Colour_isok
</ins><span class="cx"> * "Colour#red":#Colour_red
</span><span class="cx"> * "Colour#set":#Colour_set
</span><span class="cx">
</span><span class="lines">@@ -48,40 +50,50 @@
</span>&l...
2007 Mar 27
0
[922] branches/wxruby2/wxwidgets_282: Changes, additions and deprecations 2.6 -> 2.8 Wx API
...t;> * "DC#max_y":#DC_maxy
</span><span class="cx"> * "DC#min_x":#DC_minx
</span><span class="cx"> * "DC#min_y":#DC_miny
</span><del>-* "DC#ok":#DC_ok
</del><ins>+* "DC#is_ok":#DC_isok
</ins><span class="cx"> * "DC#reset_bounding_box":#DC_resetboundingbox
</span><span class="cx"> * "DC#set_axis_orientation":#DC_setaxisorientation
</span><span class="cx"> * "DC#set_background":#DC_setba...
2007 Mar 19
0
[900] branches/wxruby2/wxwidgets_282/swig/classes: Initial commit of AUI core classes
...{
+ // note source is not passed by reference so we can overwrite, to keep the
+ // unsafe bits of "dest"
+ source.window = window;
+ source.frame = frame;
+ source.buttons = buttons;
+ // now assign
+ *this = source;
+ }
+
+ bool IsOk() const { return (window != NULL) ? true : false; }
+ bool IsFixed() const { return !HasFlag(optionResizable); }
+ bool IsResizable() const { return HasFlag(optionResizable); }
+ bool IsShown() const { return !HasFlag(optionHidden); }
+ bool IsFloating() const { return HasFlag(optionFlo...
2007 May 05
0
[1012] trunk/wxruby2/doc/textile: Added docs for AUI Advanced User Interface classes
...a pane''s look, state or position. After one or more
+modifications to AuiPaneInfo, AuiManager::Update() should be called
+to commit the changes to the user interface. If the lookup failed
+(meaning the pane could not be found in the manager), a call to the
+returned AuiPaneInfo''s IsOk() method will return false.
+
+h3(#AuiManager_hidehint). AuiManager#hide_hint
+
+ *hide_hint*()
+
+HideHint() hides any docking hint that may be visible.
+
+h3(#AuiManager_insertpane). AuiManager#insert_pane
+
+ Boolean *insert_pane*(%(arg-type)Window% window, %(arg-type)AuiPaneInfo% insert_locat...
2007 Apr 14
0
[965] branches/wxruby2/wxwidgets_282/doc/textile: Misc.
...FirstChild and GetNextChild should be the same variable.
</del><ins>+get_first_child and "get_next_child":treectrl.html#TreeCtrl_getnextchild should be the same variable.
</ins><span class="cx">
</span><del>-Returns an invalid tree item (i.e. IsOk() returns @false@) if there are no further children.
</del><ins>+Returns an invalid tree item (i.e. is_ok() returns @false@) if there are no further children.
</ins><span class="cx">
</span><span class="cx"> h4. See also
</span><span...