'[1219035] cleanup: miscellaneous' and minor source cleaning.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -215,13 +215,13 @@ public:
|
||||
// shifts
|
||||
// left shift
|
||||
wxLongLongNative operator<<(int shift) const
|
||||
{ return wxLongLongNative(m_ll << shift);; }
|
||||
{ return wxLongLongNative(m_ll << shift); }
|
||||
wxLongLongNative& operator<<=(int shift)
|
||||
{ m_ll <<= shift; return *this; }
|
||||
|
||||
// right shift
|
||||
wxLongLongNative operator>>(int shift) const
|
||||
{ return wxLongLongNative(m_ll >> shift);; }
|
||||
{ return wxLongLongNative(m_ll >> shift); }
|
||||
wxLongLongNative& operator>>=(int shift)
|
||||
{ m_ll >>= shift; return *this; }
|
||||
|
||||
@@ -402,13 +402,13 @@ public:
|
||||
// shifts
|
||||
// left shift
|
||||
wxULongLongNative operator<<(int shift) const
|
||||
{ return wxULongLongNative(m_ll << shift);; }
|
||||
{ return wxULongLongNative(m_ll << shift); }
|
||||
wxULongLongNative& operator<<=(int shift)
|
||||
{ m_ll <<= shift; return *this; }
|
||||
|
||||
// right shift
|
||||
wxULongLongNative operator>>(int shift) const
|
||||
{ return wxULongLongNative(m_ll >> shift);; }
|
||||
{ return wxULongLongNative(m_ll >> shift); }
|
||||
wxULongLongNative& operator>>=(int shift)
|
||||
{ m_ll >>= shift; return *this; }
|
||||
|
||||
|
@@ -63,24 +63,24 @@ class WXDLLEXPORT wxPrintFactory
|
||||
public:
|
||||
wxPrintFactory() {}
|
||||
virtual ~wxPrintFactory() {}
|
||||
|
||||
|
||||
virtual wxPrinterBase *CreatePrinter( wxPrintDialogData* data ) = 0;
|
||||
|
||||
virtual wxPrintPreviewBase *CreatePrintPreview( wxPrintout *preview,
|
||||
wxPrintout *printout = NULL,
|
||||
|
||||
virtual wxPrintPreviewBase *CreatePrintPreview( wxPrintout *preview,
|
||||
wxPrintout *printout = NULL,
|
||||
wxPrintDialogData *data = NULL ) = 0;
|
||||
virtual wxPrintPreviewBase *CreatePrintPreview( wxPrintout *preview,
|
||||
wxPrintout *printout,
|
||||
virtual wxPrintPreviewBase *CreatePrintPreview( wxPrintout *preview,
|
||||
wxPrintout *printout,
|
||||
wxPrintData *data ) = 0;
|
||||
|
||||
virtual wxPrintDialogBase *CreatePrintDialog( wxWindow *parent,
|
||||
virtual wxPrintDialogBase *CreatePrintDialog( wxWindow *parent,
|
||||
wxPrintDialogData *data = NULL ) = 0;
|
||||
virtual wxPrintDialogBase *CreatePrintDialog( wxWindow *parent,
|
||||
virtual wxPrintDialogBase *CreatePrintDialog( wxWindow *parent,
|
||||
wxPrintData *data ) = 0;
|
||||
|
||||
|
||||
virtual wxPageSetupDialogBase *CreatePageSetupDialog( wxWindow *parent,
|
||||
wxPageSetupDialogData * data = NULL ) = 0;
|
||||
|
||||
|
||||
// What to do and what to show in the wxPrintDialog
|
||||
// a) Use the generic print setup dialog or a native one?
|
||||
virtual bool HasPrintSetupDialog() = 0;
|
||||
@@ -94,9 +94,9 @@ public:
|
||||
virtual bool HasStatusLine() = 0;
|
||||
virtual wxString CreateStatusLine() = 0;
|
||||
|
||||
|
||||
|
||||
virtual wxPrintNativeDataBase *CreatePrintNativeData() = 0;
|
||||
|
||||
|
||||
static void SetPrintFactory( wxPrintFactory *factory );
|
||||
static wxPrintFactory *GetFactory();
|
||||
static wxPrintFactory *m_factory;
|
||||
@@ -106,22 +106,22 @@ class WXDLLEXPORT wxNativePrintFactory: public wxPrintFactory
|
||||
{
|
||||
public:
|
||||
virtual wxPrinterBase *CreatePrinter( wxPrintDialogData *data );
|
||||
|
||||
virtual wxPrintPreviewBase *CreatePrintPreview( wxPrintout *preview,
|
||||
wxPrintout *printout = NULL,
|
||||
|
||||
virtual wxPrintPreviewBase *CreatePrintPreview( wxPrintout *preview,
|
||||
wxPrintout *printout = NULL,
|
||||
wxPrintDialogData *data = NULL );
|
||||
virtual wxPrintPreviewBase *CreatePrintPreview( wxPrintout *preview,
|
||||
virtual wxPrintPreviewBase *CreatePrintPreview( wxPrintout *preview,
|
||||
wxPrintout *printout,
|
||||
wxPrintData *data );
|
||||
|
||||
virtual wxPrintDialogBase *CreatePrintDialog( wxWindow *parent,
|
||||
|
||||
virtual wxPrintDialogBase *CreatePrintDialog( wxWindow *parent,
|
||||
wxPrintDialogData *data = NULL );
|
||||
virtual wxPrintDialogBase *CreatePrintDialog( wxWindow *parent,
|
||||
virtual wxPrintDialogBase *CreatePrintDialog( wxWindow *parent,
|
||||
wxPrintData *data );
|
||||
|
||||
|
||||
virtual wxPageSetupDialogBase *CreatePageSetupDialog( wxWindow *parent,
|
||||
wxPageSetupDialogData * data = NULL );
|
||||
|
||||
|
||||
virtual bool HasPrintSetupDialog();
|
||||
virtual wxDialog *CreatePrintSetupDialog( wxWindow *parent, wxPrintData *data );
|
||||
virtual bool HasOwnPrintToFile();
|
||||
@@ -129,7 +129,7 @@ public:
|
||||
virtual wxString CreatePrinterLine();
|
||||
virtual bool HasStatusLine();
|
||||
virtual wxString CreateStatusLine();
|
||||
|
||||
|
||||
virtual wxPrintNativeDataBase *CreatePrintNativeData();
|
||||
};
|
||||
|
||||
@@ -142,14 +142,14 @@ class WXDLLEXPORT wxPrintNativeDataBase: public wxObject
|
||||
public:
|
||||
wxPrintNativeDataBase();
|
||||
virtual ~wxPrintNativeDataBase() {}
|
||||
|
||||
|
||||
virtual bool TransferTo( wxPrintData &data ) = 0;
|
||||
virtual bool TransferFrom( const wxPrintData &data ) = 0;
|
||||
|
||||
virtual bool TransferFrom( const wxPrintData &data ) = 0;
|
||||
|
||||
virtual bool Ok() const = 0;
|
||||
|
||||
|
||||
int m_ref;
|
||||
|
||||
|
||||
private:
|
||||
DECLARE_CLASS(wxPrintNativeDataBase)
|
||||
DECLARE_NO_COPY_CLASS(wxPrintNativeDataBase)
|
||||
@@ -215,12 +215,12 @@ public:
|
||||
virtual bool Setup(wxWindow *parent);
|
||||
virtual bool Print(wxWindow *parent, wxPrintout *printout, bool prompt = true);
|
||||
virtual wxDC* PrintDialog(wxWindow *parent);
|
||||
|
||||
|
||||
virtual wxPrintDialogData& GetPrintDialogData() const;
|
||||
|
||||
protected:
|
||||
wxPrinterBase *m_pimpl;
|
||||
|
||||
|
||||
private:
|
||||
DECLARE_CLASS(wxPrinter)
|
||||
DECLARE_NO_COPY_CLASS(wxPrinter)
|
||||
@@ -376,8 +376,8 @@ private:
|
||||
#define wxPREVIEW_LAST 32
|
||||
#define wxPREVIEW_GOTO 64
|
||||
|
||||
#define wxPREVIEW_DEFAULT wxPREVIEW_PREVIOUS|wxPREVIEW_NEXT|wxPREVIEW_ZOOM\
|
||||
|wxPREVIEW_FIRST|wxPREVIEW_GOTO|wxPREVIEW_LAST
|
||||
#define wxPREVIEW_DEFAULT (wxPREVIEW_PREVIOUS|wxPREVIEW_NEXT|wxPREVIEW_ZOOM\
|
||||
|wxPREVIEW_FIRST|wxPREVIEW_GOTO|wxPREVIEW_LAST)
|
||||
|
||||
// Ids for controls
|
||||
#define wxID_PREVIEW_CLOSE 1
|
||||
@@ -491,7 +491,7 @@ public:
|
||||
virtual int GetZoom() const;
|
||||
|
||||
virtual wxPrintDialogData& GetPrintDialogData();
|
||||
|
||||
|
||||
virtual int GetMaxPage() const;
|
||||
virtual int GetMinPage() const;
|
||||
|
||||
@@ -571,15 +571,15 @@ public:
|
||||
|
||||
virtual bool Print(bool interactive);
|
||||
virtual void DetermineScaling();
|
||||
|
||||
|
||||
virtual wxPrintDialogData& GetPrintDialogData();
|
||||
|
||||
|
||||
virtual int GetMaxPage() const;
|
||||
virtual int GetMinPage() const;
|
||||
|
||||
virtual bool Ok() const;
|
||||
virtual void SetOk(bool ok);
|
||||
|
||||
|
||||
private:
|
||||
wxPrintPreviewBase *m_pimpl;
|
||||
|
||||
|
@@ -138,8 +138,8 @@ name::~name() \
|
||||
// this macro can be used for the most common case when you want to declare and
|
||||
// define the scoped pointer at the same time and want to use the standard
|
||||
// naming convention: auto pointer to Foo is called FooPtr
|
||||
#define wxDEFINE_SCOPED_PTR_TYPE(T) \
|
||||
wxDECLARE_SCOPED_PTR(T, T ## Ptr); \
|
||||
#define wxDEFINE_SCOPED_PTR_TYPE(T) \
|
||||
wxDECLARE_SCOPED_PTR(T, T ## Ptr) \
|
||||
wxDEFINE_SCOPED_PTR(T, T ## Ptr)
|
||||
|
||||
// the same but for arrays instead of simple pointers
|
||||
|
@@ -713,7 +713,7 @@ typedef wxPixelData<wxBitmap, wxAlphaPixelFormat> wxAlphaPixelData;
|
||||
partial template specialization then and neither VC6 nor VC7 provide it.
|
||||
*/
|
||||
template < class Image, class PixelFormat = wxPixelFormatFor<Image> >
|
||||
struct wxPixelIterator : wxPixelData<Image, PixelFormat>::Iterator
|
||||
struct wxPixelIterator : public wxPixelData<Image, PixelFormat>::Iterator
|
||||
{
|
||||
};
|
||||
|
||||
|
@@ -175,7 +175,8 @@ enum wxTextAttrAlignment
|
||||
#define wxTEXT_ATTR_FONT_ITALIC 0x0020
|
||||
#define wxTEXT_ATTR_FONT_UNDERLINE 0x0040
|
||||
#define wxTEXT_ATTR_FONT \
|
||||
wxTEXT_ATTR_FONT_FACE | wxTEXT_ATTR_FONT_SIZE | wxTEXT_ATTR_FONT_WEIGHT | wxTEXT_ATTR_FONT_ITALIC | wxTEXT_ATTR_FONT_UNDERLINE
|
||||
( wxTEXT_ATTR_FONT_FACE | wxTEXT_ATTR_FONT_SIZE | wxTEXT_ATTR_FONT_WEIGHT | \
|
||||
wxTEXT_ATTR_FONT_ITALIC | wxTEXT_ATTR_FONT_UNDERLINE )
|
||||
#define wxTEXT_ATTR_ALIGNMENT 0x0080
|
||||
#define wxTEXT_ATTR_LEFT_INDENT 0x0100
|
||||
#define wxTEXT_ATTR_RIGHT_INDENT 0x0200
|
||||
|
@@ -42,9 +42,9 @@
|
||||
wxMAKE_VERSION_DOT_STRING(wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER)
|
||||
|
||||
/* some more defines, not really sure if they're [still] useful */
|
||||
#define wxVERSION_NUMBER (wxMAJOR_VERSION * 1000) + (wxMINOR_VERSION * 100) + wxRELEASE_NUMBER
|
||||
#define wxVERSION_NUMBER ( (wxMAJOR_VERSION * 1000) + (wxMINOR_VERSION * 100) + wxRELEASE_NUMBER )
|
||||
#define wxBETA_NUMBER 0
|
||||
#define wxVERSION_FLOAT wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0)
|
||||
#define wxVERSION_FLOAT ( wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0) )
|
||||
|
||||
/* check if the current version is at least major.minor.release */
|
||||
#define wxCHECK_VERSION(major,minor,release) \
|
||||
@@ -54,11 +54,11 @@
|
||||
|
||||
/* the same but check the subrelease also */
|
||||
#define wxCHECK_VERSION_FULL(major,minor,release,subrel) \
|
||||
wxCHECK_VERSION(major, minor, release) && \
|
||||
(wxCHECK_VERSION(major, minor, release) && \
|
||||
((major) != wxMAJOR_VERSION || \
|
||||
(minor) != wxMINOR_VERSION || \
|
||||
(release) != wxRELEASE_NUMBER || \
|
||||
(subrel) <= wxSUBRELEASE_NUMBER)
|
||||
(subrel) <= wxSUBRELEASE_NUMBER))
|
||||
|
||||
#endif /* _WX_VERSION_H_ */
|
||||
|
||||
|
Reference in New Issue
Block a user