summaryrefslogtreecommitdiff
path: root/libopie2/opieui/otabwidget.h
Unidiff
Diffstat (limited to 'libopie2/opieui/otabwidget.h') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opieui/otabwidget.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/libopie2/opieui/otabwidget.h b/libopie2/opieui/otabwidget.h
index 51d1c6d..c7d32c2 100644
--- a/libopie2/opieui/otabwidget.h
+++ b/libopie2/opieui/otabwidget.h
@@ -1,12 +1,11 @@
1/* 1/*
2                This file is part of the Opie Project 2                This file is part of the Opie Project
3 3              Copyright (C) 2002 Dan Williams <williamsdr@acm.org>
4              Copyright (c) 2002 Dan Williams <williamsdr@acm.org>
5 =. 4 =.
6 .=l. 5 .=l.
7           .>+-= 6           .>+-=
8 _;:,     .>    :=|. This program is free software; you can 7 _;:,     .>    :=|. This program is free software; you can
9.> <`_,   >  .   <= redistribute it and/or modify it under 8.> <`_,   >  .   <= redistribute it and/or modify it under
10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
11.="- .-=="i,     .._ License as published by the Free Software 10.="- .-=="i,     .._ License as published by the Free Software
12 - .   .-<_>     .<> Foundation; either version 2 of the License, 11 - .   .-<_>     .<> Foundation; either version 2 of the License,
@@ -64,18 +63,18 @@ class OTabBar;
64 * - Create a OTabWidget. 63 * - Create a OTabWidget.
65 * - Create a QWidget for each of the pages in the control, insert 64 * - Create a QWidget for each of the pages in the control, insert
66 * children into it, set up geometry management for it, and use addTab() 65 * children into it, set up geometry management for it, and use addTab()
67 * to add the widget. 66 * to add the widget.
68 */ 67 */
69class OTabWidget : public QWidget 68class OTabWidget : public QWidget
70{ 69{
71 Q_OBJECT 70 Q_OBJECT
72public:
73 71
72 public:
74/** 73/**
75 * @enum TabStyle 74 * @enum TabStyle
76 * @brief Defines how the widget selection control is displayed. 75 * @brief Defines how the widget selection control is displayed.
77 * 76 *
78 * Valid values: 77 * Valid values:
79 * - Global: use globally selected options (qpe.conf - TabStyle & TabPosition) 78 * - Global: use globally selected options (qpe.conf - TabStyle & TabPosition)
80 * - TextTab: Tabbed widget selection with text labels 79 * - TextTab: Tabbed widget selection with text labels
81 * - IconTab: Tabbed widget selection with icon labels, text label for active widget 80 * - IconTab: Tabbed widget selection with icon labels, text label for active widget
@@ -102,17 +101,16 @@ public:
102 * @param parent Pointer to parent of this control. 101 * @param parent Pointer to parent of this control.
103 * @param name Name of control. 102 * @param name Name of control.
104 * @param s Style of widget selection control. 103 * @param s Style of widget selection control.
105 * @param p Position of the widget selection control. 104 * @param p Position of the widget selection control.
106 * 105 *
107 * Constructs a new OTabWidget control with parent and name. The style and position parameters 106 * Constructs a new OTabWidget control with parent and name. The style and position parameters
108 * determine how the widget selection control will be displayed. 107 * determine how the widget selection control will be displayed.
109 */ 108 */
110 // FIXME WFlags? -zecke
111 OTabWidget( QWidget * = 0, const char * = 0, TabStyle = Global, TabPosition = Top ); 109 OTabWidget( QWidget * = 0, const char * = 0, TabStyle = Global, TabPosition = Top );
112 110
113/** 111/**
114 * @fn ~OTabWidget() 112 * @fn ~OTabWidget()
115 * @brief Object destructor. 113 * @brief Object destructor.
116 */ 114 */
117 ~OTabWidget(); 115 ~OTabWidget();
118 116