Merge wxQT branch into the trunk.
This merges in the latest sources from GSoC 2014 wxQt project with just a few minor corrections, mostly undoing wrong changes to common files in that branch (results of a previous bad merge?) and getting rid of whitespace-only changes. Also remove debug logging from wxGrid. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77455 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
218
include/wx/qt/window.h
Normal file
218
include/wx/qt/window.h
Normal file
@@ -0,0 +1,218 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/qt/window.h
|
||||
// Purpose: wxWindow class
|
||||
// Author: Peter Most, Javier Torres, Mariano Reingart
|
||||
// Created: 09/08/09
|
||||
// Copyright: (c) 2009 wxWidgets dev team
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_QT_WINDOW_H_
|
||||
#define _WX_QT_WINDOW_H_
|
||||
|
||||
#include <QtWidgets/QWidget>
|
||||
#include <QtWidgets/QScrollArea>
|
||||
|
||||
class WXDLLIMPEXP_FWD_CORE wxScrollBar;
|
||||
class WXDLLIMPEXP_FWD_CORE wxQtShortcutHandler;
|
||||
|
||||
/* wxQt specific notes:
|
||||
*
|
||||
* Remember to implement the Qt object getters on all subclasses:
|
||||
* - GetHandle() returns the Qt object
|
||||
* - QtGetScrollBarsContainer() returns the widget where scrollbars are placed
|
||||
* For example, for wxFrame, GetHandle() is the QMainWindow,
|
||||
* QtGetScrollBarsContainer() is the central widget and QtGetContainer() is a widget
|
||||
* in a layout inside the central widget that also contains the scrollbars.
|
||||
* Return 0 from QtGetScrollBarsContainer() to disable SetScrollBar() and friends
|
||||
* for wxWindow subclasses.
|
||||
*
|
||||
*
|
||||
* Event handling is achieved by using the template class wxQtEventForwarder
|
||||
* found in winevent_qt.(h|cpp) to send all Qt events here to QtHandleXXXEvent()
|
||||
* methods. All these methods receive the Qt event and the handler. This is
|
||||
* done because events of the containers (the scrolled part of the window) are
|
||||
* sent to the same wxWindow instance, that must be able to differenciate them
|
||||
* as some events need different handling (paintEvent) depending on that.
|
||||
* We pass the QWidget pointer to all event handlers for consistency.
|
||||
*/
|
||||
class WXDLLIMPEXP_CORE wxWindowQt : public wxWindowBase
|
||||
{
|
||||
public:
|
||||
wxWindowQt();
|
||||
~wxWindowQt();
|
||||
wxWindowQt(wxWindowQt *parent,
|
||||
wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = 0,
|
||||
const wxString& name = wxPanelNameStr);
|
||||
|
||||
bool Create(wxWindowQt *parent,
|
||||
wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = 0,
|
||||
const wxString& name = wxPanelNameStr);
|
||||
|
||||
// Used by all window classes in the widget creation process.
|
||||
void PostCreation( bool generic = true );
|
||||
|
||||
void AddChild( wxWindowBase *child );
|
||||
|
||||
virtual bool Show( bool show = true );
|
||||
|
||||
virtual void SetLabel(const wxString& label);
|
||||
virtual wxString GetLabel() const;
|
||||
|
||||
virtual void DoEnable( bool enable );
|
||||
virtual void SetFocus();
|
||||
|
||||
// Parent/Child:
|
||||
static void QtReparent( QWidget *child, QWidget *parent );
|
||||
virtual bool Reparent( wxWindowBase *newParent );
|
||||
|
||||
// Z-order
|
||||
virtual void Raise();
|
||||
virtual void Lower();
|
||||
|
||||
// move the mouse to the specified position
|
||||
virtual void WarpPointer(int x, int y);
|
||||
|
||||
virtual void Update();
|
||||
virtual void Refresh( bool eraseBackground = true,
|
||||
const wxRect *rect = (const wxRect *) NULL );
|
||||
|
||||
virtual bool SetFont(const wxFont& font);
|
||||
|
||||
// get the (average) character size for the current font
|
||||
virtual int GetCharHeight() const;
|
||||
virtual int GetCharWidth() const;
|
||||
|
||||
virtual void SetScrollbar( int orient,
|
||||
int pos,
|
||||
int thumbvisible,
|
||||
int range,
|
||||
bool refresh = true );
|
||||
virtual void SetScrollPos( int orient, int pos, bool refresh = true );
|
||||
virtual int GetScrollPos( int orient ) const;
|
||||
virtual int GetScrollThumb( int orient ) const;
|
||||
virtual int GetScrollRange( int orient ) const;
|
||||
|
||||
// scroll window to the specified position
|
||||
virtual void ScrollWindow( int dx, int dy,
|
||||
const wxRect* rect = NULL );
|
||||
|
||||
// Styles
|
||||
virtual void SetWindowStyleFlag( long style );
|
||||
virtual void SetExtraStyle( long exStyle );
|
||||
|
||||
virtual bool SetBackgroundStyle(wxBackgroundStyle style);
|
||||
virtual bool IsTransparentBackgroundSupported(wxString* reason = NULL) const;
|
||||
virtual bool SetTransparent(wxByte alpha);
|
||||
virtual bool CanSetTransparent() { return true; }
|
||||
|
||||
virtual WXWidget GetHandle() const;
|
||||
|
||||
virtual void SetDropTarget( wxDropTarget *dropTarget );
|
||||
|
||||
#if wxUSE_ACCEL
|
||||
// accelerators
|
||||
// ------------
|
||||
virtual void SetAcceleratorTable( const wxAcceleratorTable& accel );
|
||||
#endif // wxUSE_ACCEL
|
||||
|
||||
// wxQt implementation internals:
|
||||
|
||||
virtual QPicture *QtGetPicture() const;
|
||||
|
||||
QPainter *QtGetPainter();
|
||||
|
||||
virtual bool QtHandlePaintEvent ( QWidget *handler, QPaintEvent *event );
|
||||
virtual bool QtHandleResizeEvent ( QWidget *handler, QResizeEvent *event );
|
||||
virtual bool QtHandleWheelEvent ( QWidget *handler, QWheelEvent *event );
|
||||
virtual bool QtHandleKeyEvent ( QWidget *handler, QKeyEvent *event );
|
||||
virtual bool QtHandleMouseEvent ( QWidget *handler, QMouseEvent *event );
|
||||
virtual bool QtHandleEnterEvent ( QWidget *handler, QEvent *event );
|
||||
virtual bool QtHandleMoveEvent ( QWidget *handler, QMoveEvent *event );
|
||||
virtual bool QtHandleShowEvent ( QWidget *handler, QEvent *event );
|
||||
virtual bool QtHandleChangeEvent ( QWidget *handler, QEvent *event );
|
||||
virtual bool QtHandleCloseEvent ( QWidget *handler, QCloseEvent *event );
|
||||
virtual bool QtHandleContextMenuEvent ( QWidget *handler, QContextMenuEvent *event );
|
||||
virtual bool QtHandleFocusEvent ( QWidget *handler, QFocusEvent *event );
|
||||
|
||||
static void QtStoreWindowPointer( QWidget *widget, const wxWindowQt *window );
|
||||
static wxWindowQt *QtRetrieveWindowPointer( const QWidget *widget );
|
||||
|
||||
#if wxUSE_ACCEL
|
||||
virtual void QtHandleShortcut ( int command );
|
||||
#endif // wxUSE_ACCEL
|
||||
|
||||
virtual QAbstractScrollArea *QtGetScrollBarsContainer() const;
|
||||
|
||||
protected:
|
||||
virtual void DoGetTextExtent(const wxString& string,
|
||||
int *x, int *y,
|
||||
int *descent = NULL,
|
||||
int *externalLeading = NULL,
|
||||
const wxFont *font = NULL) const;
|
||||
|
||||
// coordinates translation
|
||||
virtual void DoClientToScreen( int *x, int *y ) const;
|
||||
virtual void DoScreenToClient( int *x, int *y ) const;
|
||||
|
||||
// capture/release the mouse, used by Capture/ReleaseMouse()
|
||||
virtual void DoCaptureMouse();
|
||||
virtual void DoReleaseMouse();
|
||||
|
||||
// retrieve the position/size of the window
|
||||
virtual void DoGetPosition(int *x, int *y) const;
|
||||
|
||||
virtual void DoSetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
||||
virtual void DoGetSize(int *width, int *height) const;
|
||||
|
||||
// same as DoSetSize() for the client size
|
||||
virtual void DoSetClientSize(int width, int height);
|
||||
virtual void DoGetClientSize(int *width, int *height) const;
|
||||
|
||||
virtual void DoMoveWindow(int x, int y, int width, int height);
|
||||
|
||||
#if wxUSE_TOOLTIPS
|
||||
virtual void DoSetToolTip( wxToolTip *tip );
|
||||
#endif // wxUSE_TOOLTIPS
|
||||
|
||||
#if wxUSE_MENUS
|
||||
virtual bool DoPopupMenu(wxMenu *menu, int x, int y);
|
||||
#endif // wxUSE_MENUS
|
||||
|
||||
QWidget *m_qtWindow;
|
||||
|
||||
private:
|
||||
void Init();
|
||||
QScrollArea *m_qtContainer;
|
||||
|
||||
wxScrollBar *m_horzScrollBar;
|
||||
wxScrollBar *m_vertScrollBar;
|
||||
void QtOnScrollBarEvent( wxScrollEvent& event );
|
||||
|
||||
wxScrollBar *QtGetScrollBar( int orientation ) const;
|
||||
wxScrollBar *QtSetScrollBar( int orientation, wxScrollBar *scrollBar=NULL );
|
||||
|
||||
bool QtSetBackgroundStyle();
|
||||
|
||||
QPicture *m_qtPicture;
|
||||
QPainter *m_qtPainter;
|
||||
|
||||
bool m_mouseInside;
|
||||
|
||||
#if wxUSE_ACCEL
|
||||
QList< QShortcut* > m_qtShortcuts;
|
||||
wxQtShortcutHandler *m_qtShortcutHandler;
|
||||
bool m_processingShortcut;
|
||||
#endif // wxUSE_ACCEL
|
||||
|
||||
wxDECLARE_EVENT_TABLE();
|
||||
wxDECLARE_DYNAMIC_CLASS_NO_COPY( wxWindowQt );
|
||||
};
|
||||
|
||||
#endif // _WX_QT_WINDOW_H_
|
Reference in New Issue
Block a user