2011-02-22 12:26 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbxbp/hbpprocess.prg
* contrib/hbxbp/xbp3state.prg
* contrib/hbxbp/xbpbitmap.prg
* contrib/hbxbp/xbpbrowse.prg
* contrib/hbxbp/xbpcheckbox.prg
* contrib/hbxbp/xbpclipboard.prg
* contrib/hbxbp/xbpcombobox.prg
* contrib/hbxbp/xbpdataref.prg
* contrib/hbxbp/xbpdialog.prg
* contrib/hbxbp/xbpfiledialog.prg
* contrib/hbxbp/xbpfontdialog.prg
* contrib/hbxbp/xbphtmlviewer.prg
* contrib/hbxbp/xbplistbox.prg
* contrib/hbxbp/xbpmenubar.prg
* contrib/hbxbp/xbpmle.prg
* contrib/hbxbp/xbppresspace.prg
* contrib/hbxbp/xbpprintdialog.prg
* contrib/hbxbp/xbpprinter.prg
* contrib/hbxbp/xbppushbutton.prg
* contrib/hbxbp/xbpradiobutton.prg
* contrib/hbxbp/xbprtf.prg
* contrib/hbxbp/xbpscrollbar.prg
* contrib/hbxbp/xbpsle.prg
* contrib/hbxbp/xbpspinbutton.prg
* contrib/hbxbp/xbpstatic.prg
* contrib/hbxbp/xbpstatusbar.prg
* contrib/hbxbp/xbpstyle.prg
* contrib/hbxbp/xbptabpage.prg
* contrib/hbxbp/xbptoolbar.prg
* contrib/hbxbp/xbptreeview.prg
! Changed: Method :new() => :init() as per Xbase++ compatibility.
This commit is contained in:
@@ -16,6 +16,39 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2011-02-22 12:26 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
|
||||
* contrib/hbxbp/hbpprocess.prg
|
||||
* contrib/hbxbp/xbp3state.prg
|
||||
* contrib/hbxbp/xbpbitmap.prg
|
||||
* contrib/hbxbp/xbpbrowse.prg
|
||||
* contrib/hbxbp/xbpcheckbox.prg
|
||||
* contrib/hbxbp/xbpclipboard.prg
|
||||
* contrib/hbxbp/xbpcombobox.prg
|
||||
* contrib/hbxbp/xbpdataref.prg
|
||||
* contrib/hbxbp/xbpdialog.prg
|
||||
* contrib/hbxbp/xbpfiledialog.prg
|
||||
* contrib/hbxbp/xbpfontdialog.prg
|
||||
* contrib/hbxbp/xbphtmlviewer.prg
|
||||
* contrib/hbxbp/xbplistbox.prg
|
||||
* contrib/hbxbp/xbpmenubar.prg
|
||||
* contrib/hbxbp/xbpmle.prg
|
||||
* contrib/hbxbp/xbppresspace.prg
|
||||
* contrib/hbxbp/xbpprintdialog.prg
|
||||
* contrib/hbxbp/xbpprinter.prg
|
||||
* contrib/hbxbp/xbppushbutton.prg
|
||||
* contrib/hbxbp/xbpradiobutton.prg
|
||||
* contrib/hbxbp/xbprtf.prg
|
||||
* contrib/hbxbp/xbpscrollbar.prg
|
||||
* contrib/hbxbp/xbpsle.prg
|
||||
* contrib/hbxbp/xbpspinbutton.prg
|
||||
* contrib/hbxbp/xbpstatic.prg
|
||||
* contrib/hbxbp/xbpstatusbar.prg
|
||||
* contrib/hbxbp/xbpstyle.prg
|
||||
* contrib/hbxbp/xbptabpage.prg
|
||||
* contrib/hbxbp/xbptoolbar.prg
|
||||
* contrib/hbxbp/xbptreeview.prg
|
||||
! Changed: Method :new() => :init() as per Xbase++ compatibility.
|
||||
|
||||
2011-02-22 18:35 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* config/vxworks/gcc.mk
|
||||
* config/vxworks/diab.mk
|
||||
|
||||
@@ -92,7 +92,7 @@ CLASS HbpProcess
|
||||
DATA cShellCmd
|
||||
DATA lDetached INIT .f.
|
||||
|
||||
METHOD new( cShellCmd )
|
||||
METHOD init( cShellCmd )
|
||||
METHOD create( cShellCmd )
|
||||
METHOD destroy() VIRTUAL
|
||||
METHOD addArg( cArg, lTokened )
|
||||
@@ -128,7 +128,7 @@ CLASS HbpProcess
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD HbpProcess:new( cShellCmd )
|
||||
METHOD HbpProcess:init( cShellCmd )
|
||||
|
||||
::cShellCmd := cShellCmd
|
||||
|
||||
|
||||
@@ -80,7 +80,7 @@ CLASS Xbp3State INHERIT XbpWindow, DataRef
|
||||
DATA pointerFocus INIT .T.
|
||||
DATA selection INIT .F.
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -97,7 +97,7 @@ CLASS Xbp3State INHERIT XbpWindow, DataRef
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD Xbp3State:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD Xbp3State:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -88,7 +88,7 @@ CLASS XbpBitmap
|
||||
ACCESS xSize INLINE ::oWidget:width()
|
||||
ACCESS ySize INLINE ::oWidget:height()
|
||||
|
||||
METHOD new() INLINE Self
|
||||
METHOD init() INLINE Self
|
||||
METHOD create( oPS )
|
||||
METHOD configure() VIRTUAL
|
||||
METHOD destroy() VIRTUAL
|
||||
|
||||
@@ -300,7 +300,7 @@ EXPORTED:
|
||||
MESSAGE _right() METHOD Right()
|
||||
MESSAGE _end() METHOD End()
|
||||
|
||||
METHOD new( nTop, nLeft, nBottom, nRight ) // constructor, NOTE: This method is a Harbour extension [vszakats]
|
||||
METHOD init( nTop, nLeft, nBottom, nRight ) // constructor, NOTE: This method is a Harbour extension [vszakats]
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible ) // constructor, NOTE: This method is a Harbour extension [vszakats]
|
||||
METHOD execSlot( nEvent, p1, p2, p3 ) // executes view events
|
||||
METHOD supplyInfo( nMode, nCall, nRole, nX, nY ) // supplies cell parameters to Qt engine
|
||||
@@ -603,7 +603,7 @@ METHOD XbpBrowse:disconnect()
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
/* Just to retain TBrowse functionality: in the future */
|
||||
METHOD XbpBrowse:new( nTop, nLeft, nBottom, nRight )
|
||||
METHOD XbpBrowse:init( nTop, nLeft, nBottom, nRight )
|
||||
|
||||
DEFAULT nTop TO 0
|
||||
DEFAULT nLeft TO 0
|
||||
|
||||
@@ -80,7 +80,7 @@ CLASS XbpCheckBox INHERIT XbpWindow, DataRef
|
||||
DATA pointerFocus INIT .T.
|
||||
DATA selection INIT .F.
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -97,7 +97,7 @@ CLASS XbpCheckBox INHERIT XbpWindow, DataRef
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpCheckBox:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpCheckBox:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -78,7 +78,7 @@ CLASS XbpClipBoard
|
||||
DATA oWidget
|
||||
DATA oOldXbp
|
||||
|
||||
METHOD new()
|
||||
METHOD init()
|
||||
METHOD create()
|
||||
METHOD destroy()
|
||||
|
||||
@@ -96,7 +96,7 @@ CLASS XbpClipBoard
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpClipBoard:new()
|
||||
METHOD XbpClipBoard:init()
|
||||
|
||||
RETURN Self
|
||||
|
||||
|
||||
@@ -78,8 +78,7 @@ CLASS XbpComboBox INHERIT XbpWindow
|
||||
DATA type INIT XBPCOMBO_DROPDOWN
|
||||
DATA drawMode INIT XBP_DRAW_NORMAL
|
||||
|
||||
// MESSAGE init( ... ) METHOD new( ... )
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible ) VIRTUAL
|
||||
@@ -125,7 +124,7 @@ CLASS XbpComboBox INHERIT XbpWindow
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -84,7 +84,7 @@ CLASS DataRef
|
||||
DATA sl_editBuffer
|
||||
DATA sl_buffer
|
||||
|
||||
METHOD new()
|
||||
METHOD init()
|
||||
METHOD getData()
|
||||
METHOD setData( xValue, mp2 )
|
||||
METHOD undo()
|
||||
@@ -95,7 +95,7 @@ CLASS DataRef
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD DataRef:new()
|
||||
METHOD DataRef:init()
|
||||
|
||||
RETURN self
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@ CLASS XbpDialog FROM XbpWindow
|
||||
DATA origin INIT XBPDLG_ORIGIN_OWNER
|
||||
DATA sysMenu INIT .T.
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -122,7 +122,7 @@ CLASS XbpDialog FROM XbpWindow
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpDialog:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpDialog:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
@@ -391,16 +391,16 @@ CLASS XbpDrawingArea INHERIT XbpWindow
|
||||
DATA clipSiblings INIT .T.
|
||||
DATA clipChildren INIT .F.
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
ENDCLASS
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpDrawingArea:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpDrawingArea:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
::visible := .t.
|
||||
|
||||
RETURN Self
|
||||
|
||||
@@ -85,7 +85,7 @@ CLASS XbpFileDialog INHERIT XbpWindow
|
||||
DATA title INIT NIL // ""
|
||||
DATA validatePath INIT .f.
|
||||
|
||||
METHOD new( oParent, oOwner, aPos )
|
||||
METHOD init( oParent, oOwner, aPos )
|
||||
METHOD create( oParent, oOwner, aPos )
|
||||
METHOD execSlot( cSlot, p )
|
||||
METHOD destroy()
|
||||
@@ -98,7 +98,7 @@ CLASS XbpFileDialog INHERIT XbpWindow
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpFileDialog:new( oParent, oOwner, aPos )
|
||||
METHOD XbpFileDialog:init( oParent, oOwner, aPos )
|
||||
|
||||
::xbpWindow:INIT( oParent, oOwner, aPos )
|
||||
|
||||
|
||||
@@ -117,7 +117,7 @@ CLASS XbpFontDialog INHERIT XbpWindow
|
||||
DATA viewPrinterFonts INIT .F.
|
||||
DATA viewScreenFonts INIT .T.
|
||||
|
||||
METHOD new( oParent, oOwner, oScreenPS, oPrinterPS, aPos )
|
||||
METHOD init( oParent, oOwner, oScreenPS, oPrinterPS, aPos )
|
||||
METHOD create( oParent, oOwner, oScreenPS, oPrinterPS, aPos )
|
||||
METHOD execSlot( cSlot, p )
|
||||
METHOD display( nMode )
|
||||
@@ -144,7 +144,7 @@ CLASS XbpFontDialog INHERIT XbpWindow
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpFontDialog:new( oParent, oOwner, oScreenPS, oPrinterPS, aPos )
|
||||
METHOD XbpFontDialog:init( oParent, oOwner, oScreenPS, oPrinterPS, aPos )
|
||||
|
||||
DEFAULT oParent TO ::oParent
|
||||
DEFAULT oOwner TO ::oOwner
|
||||
|
||||
@@ -95,7 +95,7 @@ CLASS XbpHTMLViewer INHERIT XbpWindow
|
||||
DATA oURL
|
||||
DATA cSelectedText
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD destroy()
|
||||
METHOD execSlot( cSlot, p )
|
||||
@@ -142,7 +142,7 @@ CLASS XbpHTMLViewer INHERIT XbpWindow
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpHTMLViewer:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpHTMLViewer:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -88,7 +88,7 @@ CLASS XbpListBox INHERIT XbpWindow, DataRef
|
||||
|
||||
DATA nOldIndex INIT 0
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -145,7 +145,7 @@ CLASS XbpListBox INHERIT XbpWindow, DataRef
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpListBox:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpListBox:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::initialize( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -116,7 +116,7 @@ CLASS xbpMenuBar INHERIT xbpWindow
|
||||
DATA aIds INIT {}
|
||||
DATA className INIT "XbpMenuBar"
|
||||
|
||||
METHOD new( oParent, aPresParams, lVisible )
|
||||
METHOD init( oParent, aPresParams, lVisible )
|
||||
METHOD create( oParent, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, aPresParams, lVisible )
|
||||
@@ -154,7 +154,7 @@ CLASS xbpMenuBar INHERIT xbpWindow
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD xbpMenuBar:new( oParent, aPresParams, lVisible )
|
||||
METHOD xbpMenuBar:init( oParent, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, , , , aPresParams, lVisible )
|
||||
|
||||
@@ -674,7 +674,7 @@ CLASS xbpMenu INHERIT xbpMenuBar
|
||||
|
||||
DATA title INIT ""
|
||||
|
||||
METHOD new( oParent, aPresParams, lVisible )
|
||||
METHOD init( oParent, aPresParams, lVisible )
|
||||
METHOD create( oParent, aPresParams, lVisible )
|
||||
METHOD getTitle()
|
||||
METHOD setTitle( cTitle )
|
||||
@@ -686,7 +686,7 @@ CLASS xbpMenu INHERIT xbpMenuBar
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD xbpMenu:new( oParent, aPresParams, lVisible )
|
||||
METHOD xbpMenu:init( oParent, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, , , , aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -84,7 +84,7 @@ CLASS XbpMLE INHERIT XbpWindow, DataRef
|
||||
|
||||
DATA changed INIT .F.
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible ) VIRTUAL
|
||||
@@ -123,7 +123,7 @@ CLASS XbpMLE INHERIT XbpWindow, DataRef
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpMLE:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpMLE:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -79,7 +79,7 @@ CLASS XbpPresSpace
|
||||
DATA mode INIT XBPPS_MODE_NORMAL
|
||||
DATA d
|
||||
|
||||
METHOD new()
|
||||
METHOD init()
|
||||
METHOD create( oDevice, aPageSize, nUnits )
|
||||
METHOD configure() VIRTUAL
|
||||
METHOD destroy() VIRTUAL
|
||||
@@ -158,7 +158,7 @@ CLASS XbpPresSpace
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpPresSpace:new()
|
||||
METHOD XbpPresSpace:init()
|
||||
RETURN Self
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
@@ -88,7 +88,7 @@ CLASS XbpPrintDialog INHERIT XbpWindow
|
||||
DATA printRange INIT XBPPDLG_PRINT_ALLPAGES
|
||||
DATA printToFile INIT .F.
|
||||
|
||||
METHOD new( oParent, oOwner )
|
||||
METHOD init( oParent, oOwner )
|
||||
METHOD create( oParent, oOwner )
|
||||
METHOD destroy()
|
||||
METHOD display( oXbpPrinter )
|
||||
@@ -98,7 +98,7 @@ CLASS XbpPrintDialog INHERIT XbpWindow
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpPrintDialog:new( oParent, oOwner )
|
||||
METHOD XbpPrintDialog:init( oParent, oOwner )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner )
|
||||
|
||||
|
||||
@@ -94,7 +94,7 @@ CLASS XbpPrinter
|
||||
/* Internal */
|
||||
DATA isValid
|
||||
|
||||
METHOD new()
|
||||
METHOD init()
|
||||
METHOD create( cDeviceName, nSpoolFormat, cDeviceParams )
|
||||
METHOD configure() VIRTUAL
|
||||
METHOD destroy() VIRTUAL
|
||||
@@ -137,7 +137,7 @@ CLASS XbpPrinter
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpPrinter:new()
|
||||
METHOD XbpPrinter:init()
|
||||
RETURN Self
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
@@ -88,7 +88,7 @@ CLASS XbpPushButton INHERIT XbpWindow
|
||||
|
||||
DATA sl_draw
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -109,7 +109,7 @@ CLASS XbpPushButton INHERIT XbpWindow
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpPushButton:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpPushButton:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:INIT( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -80,7 +80,7 @@ CLASS XbpRadioButton INHERIT XbpWindow, DataRef
|
||||
DATA pointerFocus INIT .T.
|
||||
DATA selection INIT .F.
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -97,7 +97,7 @@ CLASS XbpRadioButton INHERIT XbpWindow, DataRef
|
||||
ENDCLASS
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpRadioButton:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpRadioButton:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@
|
||||
|
||||
CLASS XbpRtf INHERIT XbpWindow
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure()
|
||||
@@ -159,7 +159,7 @@ CLASS XbpRtf INHERIT XbpWindow
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpRtf:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpRtf:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -83,7 +83,7 @@ CLASS XbpScrollBar INHERIT XbpWindow, DataRef
|
||||
|
||||
DATA sl_xbeSB_Scroll
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible ) VIRTUAL
|
||||
@@ -103,7 +103,7 @@ CLASS XbpScrollBar INHERIT XbpWindow, DataRef
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpScrollBar:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpScrollBar:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -86,7 +86,7 @@ CLASS XbpSLE INHERIT XbpWindow, DataRef
|
||||
|
||||
DATA changed INIT .F.
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible ) VIRTUAL
|
||||
@@ -121,7 +121,7 @@ CLASS XbpSLE INHERIT XbpWindow, DataRef
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpSLE:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpSLE:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -90,7 +90,7 @@ CLASS XbpSpinButton INHERIT XbpWindow, DataRef
|
||||
|
||||
DATA nOldValue INIT 0
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible ) VIRTUAL
|
||||
@@ -127,7 +127,7 @@ CLASS XbpSpinButton INHERIT XbpWindow, DataRef
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpSpinButton:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpSpinButton:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -84,7 +84,7 @@ CLASS XbpStatic INHERIT XbpWindow
|
||||
|
||||
DATA hBitmap
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -96,7 +96,7 @@ CLASS XbpStatic INHERIT XbpWindow
|
||||
ENDCLASS
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpStatic:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpStatic:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -80,7 +80,7 @@ CLASS XbpStatusBar INHERIT XbpWindow
|
||||
|
||||
DATA aItems INIT {}
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -101,7 +101,7 @@ CLASS XbpStatusBar INHERIT XbpWindow
|
||||
ENDCLASS
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpStatusBar:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpStatusBar:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
@@ -311,14 +311,14 @@ CLASS XbpStatusBarPanel
|
||||
DATA width INIT 0
|
||||
DATA minWidth INIT 0
|
||||
|
||||
METHOD new( cCaption, nStyle, cKey )
|
||||
METHOD init( cCaption, nStyle, cKey )
|
||||
METHOD create( cCaption, nStyle, cKey )
|
||||
METHOD caption( cCaption ) SETGET
|
||||
|
||||
ENDCLASS
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpStatusBarPanel:new( cCaption, nStyle, cKey )
|
||||
METHOD XbpStatusBarPanel:init( cCaption, nStyle, cKey )
|
||||
|
||||
DEFAULT cCaption TO ::sl_caption
|
||||
DEFAULT nStyle TO ::style
|
||||
|
||||
@@ -83,7 +83,7 @@ CLASS XbpStyle
|
||||
DATA colorFG
|
||||
DATA colorBG
|
||||
|
||||
METHOD New() INLINE Self
|
||||
METHOD init() INLINE Self
|
||||
METHOD Create()
|
||||
METHOD Configure() VIRTUAL
|
||||
METHOD Destroy() VIRTUAL
|
||||
|
||||
@@ -84,7 +84,7 @@ CLASS XbpTabPage INHERIT XbpWindow
|
||||
DATA tabHeight INIT -1 /* Determines the height of the tab. */
|
||||
DATA type INIT XBPTABPAGE_TAB_TOP /* Determines the position of the tab. */
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -105,7 +105,7 @@ CLASS XbpTabPage INHERIT XbpWindow
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpTabPage:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpTabPage:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
@@ -258,7 +258,7 @@ CLASS XbpTabWidget INHERIT XbpWindow
|
||||
DATA aTabs INIT {}
|
||||
DATA qCornerWidget
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject ) VIRTUAL
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -271,7 +271,7 @@ CLASS XbpTabWidget INHERIT XbpWindow
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpTabWidget:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpTabWidget:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
|
||||
@@ -101,7 +101,7 @@ CLASS XbpToolBar INHERIT XbpWindow
|
||||
|
||||
METHOD numItems() INLINE Len( ::aItems )
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -130,9 +130,9 @@ CLASS XbpToolBar INHERIT XbpWindow
|
||||
ENDCLASS
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpToolbar:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpToolbar:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
RETURN Self
|
||||
|
||||
@@ -450,13 +450,13 @@ CLASS XbpToolbarButton
|
||||
DATA command INIT 0
|
||||
DATA oAction
|
||||
|
||||
METHOD new( cCaption, nStyle, cKey )
|
||||
METHOD init( cCaption, nStyle, cKey )
|
||||
|
||||
ENDCLASS
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpToolbarButton:new( cCaption, nStyle, cKey )
|
||||
METHOD XbpToolbarButton:init( cCaption, nStyle, cKey )
|
||||
|
||||
DEFAULT cCaption TO ::caption
|
||||
DEFAULT nStyle TO ::style
|
||||
|
||||
@@ -83,7 +83,7 @@ CLASS XbpTreeView INHERIT XbpWindow, DataRef
|
||||
DATA oRootItem
|
||||
ACCESS rootItem() INLINE ::oRootItem
|
||||
|
||||
METHOD new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD create( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD hbCreateFromQtPtr( oParent, oOwner, aPos, aSize, aPresParams, lVisible, pQtObject )
|
||||
METHOD configure( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
@@ -124,7 +124,7 @@ CLASS XbpTreeView INHERIT XbpWindow, DataRef
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpTreeView:new( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
METHOD XbpTreeView:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
::xbpWindow:init( oParent, oOwner, aPos, aSize, aPresParams, lVisible )
|
||||
|
||||
@@ -381,7 +381,7 @@ CLASS XbpTreeViewItem INHERIT DataRef
|
||||
DATA aChilds INIT {}
|
||||
DATA tooltipText INIT ""
|
||||
|
||||
METHOD new()
|
||||
METHOD init()
|
||||
METHOD create()
|
||||
METHOD configure()
|
||||
METHOD destroy()
|
||||
@@ -444,7 +444,7 @@ METHOD XbpTreeViewItem:addItem( xItem, xNormalImage, xMarkedImage, xExpandedImag
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
METHOD XbpTreeViewItem:new()
|
||||
METHOD XbpTreeViewItem:init()
|
||||
|
||||
RETURN Self
|
||||
|
||||
|
||||
Reference in New Issue
Block a user