summaryrefslogtreecommitdiffstats
path: root/tdeui/kmenubar.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-15 23:21:33 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-15 23:21:33 -0600
commit71abba5631126445560d6ab309a51c28745a0b74 (patch)
treecebdb0db1f78eccd9dae0742734ccaf6d167c028 /tdeui/kmenubar.h
parented99a30644c19b0a3cf0d2147243532df4daa16b (diff)
downloadtdelibs-71abba5631126445560d6ab309a51c28745a0b74.tar.gz
tdelibs-71abba5631126445560d6ab309a51c28745a0b74.zip
Fix prior commit
Diffstat (limited to 'tdeui/kmenubar.h')
-rw-r--r--tdeui/kmenubar.h114
1 files changed, 0 insertions, 114 deletions
diff --git a/tdeui/kmenubar.h b/tdeui/kmenubar.h
deleted file mode 100644
index e657671e3..000000000
--- a/tdeui/kmenubar.h
+++ /dev/null
@@ -1,114 +0,0 @@
-/* This file is part of the KDE libraries
- Copyright (C) 1997, 1998, 1999, 2000 Sven Radej (radej@kde.org)
- Copyright (C) 1997, 1998, 1999, 2000 Matthias Ettrich (ettrich@kde.org)
- Copyright (C) 1999, 2000 Daniel "Mosfet" Duley (mosfet@kde.org)
-
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-//$Id$
-
-#ifndef _KMENUBAR_H
-#define _KMENUBAR_H
-
-#include <tqmenubar.h>
-
-#include <tdelibs_export.h>
-
-/**
- * %KDE Style-able menubar.
- *
- * This is required since TQMenuBar is currently not handled by
- * TQStyle.
- *
- * @author Daniel "Mosfet" Duley.
- * @version $Id$
-*/
-
-class TDEUI_EXPORT KMenuBar : public TQMenuBar
-{
- Q_OBJECT
-
-public:
-
- KMenuBar (TQWidget *parent=0, const char *name=0);
- ~KMenuBar ();
-
- /**
- * This controls whether or not this menubar will be a top-level
- * bar similar to the way Macintosh handles menubars. This
- * overrides any global config settings.
- *
- * Keep in mind that it is probably a really bad idea to use this
- * unless you really know what you're doing. A feature like a
- * top-level menubar is one that should really be shared by all
- * applications. If your app is the only one with a top-level
- * bar, then things might look very... odd.
- *
- * This is included only for those people that @p do know that
- * they need to use it.
- *
- * @param top_level If set to true, then this menubar will be a
- * top-level menu
- */
- void setTopLevelMenu(bool top_level = true);
-
- /**
- * Is our menubar a top-level (Macintosh style) menubar?
- *
- * @return True if it is top-level.
- */
- bool isTopLevelMenu() const;
-
- // TT are overloading virtuals :(
- virtual void setGeometry( const TQRect &r );
- virtual void setGeometry( int x, int y, int w, int h );
- virtual void resize( int w, int h );
- void resize( const TQSize& s ) { TQMenuBar::resize( s ); }
-
- virtual void show();
- virtual void setFrameStyle( int );
- virtual void setLineWidth( int );
- virtual void setMargin( int );
- virtual TQSize sizeHint() const;
-protected slots:
- void slotReadConfig();
-protected:
- virtual void showEvent( TQShowEvent* );
- virtual void resizeEvent( TQResizeEvent* );
- virtual bool eventFilter(TQObject *, TQEvent *);
-#ifdef Q_WS_X11
- virtual bool x11Event( XEvent* );
-#endif
- virtual void closeEvent( TQCloseEvent* );
- virtual void drawContents( TQPainter* );
-private slots:
- void updateFallbackSize();
- void selectionTimeout();
-private:
- void setTopLevelMenuInternal(bool top_level);
- void updateMenuBarSize();
- void checkSize( int& w, int& h );
- static int block_resize;
-protected:
- virtual void virtual_hook( int id, void* data );
-private:
- class KMenuBarPrivate;
- KMenuBarPrivate *d;
-};
-
-#endif