You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tqt3/doc/html/qmainwindow-h.html

307 lines
10 KiB

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqmainwindow.h:1 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ntqmainwindow.h Include File</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }
body { background: #ffffff; color: black; }
--></style>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr bgcolor="#E5E5E5">
<td valign=center>
<a href="index.html">
<font color="#004faf">Home</font></a>
| <a href="classes.html">
<font color="#004faf">All&nbsp;Classes</font></a>
| <a href="mainclasses.html">
<font color="#004faf">Main&nbsp;Classes</font></a>
| <a href="annotated.html">
<font color="#004faf">Annotated</font></a>
| <a href="groups.html">
<font color="#004faf">Grouped&nbsp;Classes</font></a>
| <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>ntqmainwindow.h</h1>
<p>This is the verbatim text of the ntqmainwindow.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<hr>
<pre>
/****************************************************************************
** $Id: qt/ntqmainwindow.h 3.3.8 edited Jan 11 14:38 $
**
** Definition of TQMainWindow class
**
** Created : 980316
**
** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.
**
** This file is part of the widgets module of the TQt GUI Toolkit.
**
** This file may be used under the terms of the GNU General Public
** License versions 2.0 or 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file. Alternatively you may (at your option) use any
** later version of the GNU General Public License if such license has
** been publicly approved by Trolltech ASA (or its successors, if any)
** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
** or contact the sales department at sales@trolltech.com.
**
** This file may be used under the terms of the Q Public License as
** defined by Trolltech ASA and appearing in the file LICENSE.TQPL
** included in the packaging of this file. Licensees holding valid TQt
** Commercial licenses may use this file in accordance with the TQt
** Commercial License Agreement provided with the Software.
**
** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted
** herein.
**
**********************************************************************/
#ifndef TQMAINWINDOW_H
#define TQMAINWINDOW_H
#ifndef QT_H
#include "ntqwidget.h"
#include "ntqtoolbar.h"
#include "ntqptrlist.h"
#include "ntqtextstream.h"
#endif // QT_H
#ifndef QT_NO_MAINWINDOW
class TQMenuBar;
class TQStatusBar;
class TQToolTipGroup;
class TQMainWindowPrivate;
class TQMainWindowLayout;
class TQPopupMenu;
class Q_EXPORT TQMainWindow: public TQWidget
{
TQ_OBJECT
TQ_PROPERTY( bool rightJustification READ rightJustification WRITE setRightJustification DESIGNABLE false )
TQ_PROPERTY( bool usesBigPixmaps READ usesBigPixmaps WRITE setUsesBigPixmaps )
TQ_PROPERTY( bool usesTextLabel READ usesTextLabel WRITE setUsesTextLabel )
TQ_PROPERTY( bool dockWindowsMovable READ dockWindowsMovable WRITE setDockWindowsMovable )
TQ_PROPERTY( bool opaqueMoving READ opaqueMoving WRITE setOpaqueMoving )
public:
TQMainWindow( TQWidget* parent=0, const char* name=0, WFlags f = WType_TopLevel );
~TQMainWindow();
#ifndef QT_NO_MENUBAR
TQMenuBar * menuBar() const;
#endif
TQStatusBar * statusBar() const;
#ifndef QT_NO_TOOLTIP
TQToolTipGroup * toolTipGroup() const;
#endif
virtual void setCentralWidget( TQWidget * );
TQWidget * centralWidget() const;
virtual void setDockEnabled( Dock dock, bool enable );
bool isDockEnabled( Dock dock ) const;
bool isDockEnabled( TQDockArea *area ) const;
virtual void setDockEnabled( TQDockWindow *tb, Dock dock, bool enable );
bool isDockEnabled( TQDockWindow *tb, Dock dock ) const;
bool isDockEnabled( TQDockWindow *tb, TQDockArea *area ) const;
virtual void addDockWindow( TQDockWindow *, Dock = DockTop, bool newLine = FALSE );
virtual void addDockWindow( TQDockWindow *, const TQString &amp;label,
Dock = DockTop, bool newLine = FALSE );
virtual void moveDockWindow( TQDockWindow *, Dock = DockTop );
virtual void moveDockWindow( TQDockWindow *, Dock, bool nl, int index, int extraOffset = -1 );
virtual void removeDockWindow( TQDockWindow * );
void show();
void hide();
TQSize sizeHint() const;
TQSize minimumSizeHint() const;
bool rightJustification() const;
bool usesBigPixmaps() const;
bool usesTextLabel() const;
bool dockWindowsMovable() const;
bool opaqueMoving() const;
bool eventFilter( TQObject*, TQEvent* );
bool getLocation( TQDockWindow *tb, Dock &amp;dock, int &amp;index, bool &amp;nl, int &amp;extraOffset ) const;
TQPtrList&lt;TQDockWindow&gt; dockWindows( Dock dock ) const;
TQPtrList&lt;TQDockWindow&gt; dockWindows() const;
void lineUpDockWindows( bool keepNewLines = FALSE );
bool isDockMenuEnabled() const;
// compatibility stuff
bool hasDockWindow( TQDockWindow *dw );
#ifndef QT_NO_TOOLBAR
void addToolBar( TQDockWindow *, Dock = DockTop, bool newLine = FALSE );
void addToolBar( TQDockWindow *, const TQString &amp;label,
Dock = DockTop, bool newLine = FALSE );
void moveToolBar( TQDockWindow *, Dock = DockTop );
void moveToolBar( TQDockWindow *, Dock, bool nl, int index, int extraOffset = -1 );
void removeToolBar( TQDockWindow * );
bool toolBarsMovable() const;
TQPtrList&lt;TQToolBar&gt; toolBars( Dock dock ) const;
void lineUpToolBars( bool keepNewLines = FALSE );
#endif
virtual TQDockArea *dockingArea( const TQPoint &amp;p );
TQDockArea *leftDock() const;
TQDockArea *rightDock() const;
TQDockArea *topDock() const;
TQDockArea *bottomDock() const;
virtual bool isCustomizable() const;
bool appropriate( TQDockWindow *dw ) const;
enum DockWindows { OnlyToolBars, NoToolBars, AllDockWindows };
TQPopupMenu *createDockWindowMenu( DockWindows dockWindows = AllDockWindows ) const;
public slots:
virtual void setRightJustification( bool );
virtual void setUsesBigPixmaps( bool );
virtual void setUsesTextLabel( bool );
virtual void setDockWindowsMovable( bool );
virtual void setOpaqueMoving( bool );
virtual void setDockMenuEnabled( bool );
virtual void whatsThis();
virtual void setAppropriate( TQDockWindow *dw, bool a );
virtual void customize();
// compatibility stuff
void setToolBarsMovable( bool );
signals:
void pixmapSizeChanged( bool );
void usesTextLabelChanged( bool );
void dockWindowPositionChanged( TQDockWindow * );
#ifndef QT_NO_TOOLBAR
// compatibility stuff
void toolBarPositionChanged( TQToolBar * );
#endif
protected slots:
virtual void setUpLayout();
virtual bool showDockMenu( const TQPoint &amp;globalPos );
void menuAboutToShow();
protected:
void paintEvent( TQPaintEvent * );
void childEvent( TQChildEvent * );
bool event( TQEvent * );
void styleChange( TQStyle&amp; );
private slots:
void slotPlaceChanged();
void doLineUp() { lineUpDockWindows( TRUE ); }
private:
TQMainWindowPrivate * d;
void triggerLayout( bool deleteLayout = TRUE);
bool dockMainWindow( TQObject *dock );
#ifndef QT_NO_MENUBAR
virtual void setMenuBar( TQMenuBar * );
#endif
virtual void setStatusBar( TQStatusBar * );
#ifndef QT_NO_TOOLTIP
virtual void setToolTipGroup( TQToolTipGroup * );
#endif
friend class TQDockWindow;
friend class TQMenuBar;
friend class TQHideDock;
friend class TQToolBar;
friend class TQMainWindowLayout;
private: // Disabled copy constructor and operator=
#if defined(TQ_DISABLE_COPY)
TQMainWindow( const TQMainWindow &amp; );
TQMainWindow&amp; operator=( const TQMainWindow &amp; );
#endif
};
#ifndef QT_NO_TOOLBAR
inline void TQMainWindow::addToolBar( TQDockWindow *w, ToolBarDock dock, bool newLine )
{
addDockWindow( w, dock, newLine );
}
inline void TQMainWindow::addToolBar( TQDockWindow *w, const TQString &amp;label,
ToolBarDock dock, bool newLine )
{
addDockWindow( w, label, dock, newLine );
}
inline void TQMainWindow::moveToolBar( TQDockWindow *w, ToolBarDock dock )
{
moveDockWindow( w, dock );
}
inline void TQMainWindow::moveToolBar( TQDockWindow *w, ToolBarDock dock, bool nl, int index, int extraOffset )
{
moveDockWindow( w, dock, nl, index, extraOffset );
}
inline void TQMainWindow::removeToolBar( TQDockWindow *w )
{
removeDockWindow( w );
}
inline bool TQMainWindow::toolBarsMovable() const
{
return dockWindowsMovable();
}
inline void TQMainWindow::lineUpToolBars( bool keepNewLines )
{
lineUpDockWindows( keepNewLines );
}
inline void TQMainWindow::setToolBarsMovable( bool b )
{
setDockWindowsMovable( b );
}
#endif
#ifndef QT_NO_TEXTSTREAM
Q_EXPORT TQTextStream &amp;operator&lt;&lt;( TQTextStream &amp;, const TQMainWindow &amp; );
Q_EXPORT TQTextStream &amp;operator&gt;&gt;( TQTextStream &amp;, TQMainWindow &amp; );
#endif
#endif // QT_NO_MAINWINDOW
#endif // TQMAINWINDOW_H
</pre>
<!-- eof -->
<p><address><hr><div align=center>
<table width=100% cellspacing=0 border=0><tr>
<td>Copyright &copy; 2007
<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a>
<td align=right><div align=right>TQt 3.3.8</div>
</table></div></address></body>
</html>