summaryrefslogtreecommitdiff
path: root/library/menubutton.cpp
authorllornkcor <llornkcor>2003-02-23 03:35:32 (UTC)
committer llornkcor <llornkcor>2003-02-23 03:35:32 (UTC)
commit98ed23c5281a57d08c6c18b464fc50b4638385f8 (patch) (unidiff)
tree79e3ad38c6e96ce3d0bbabb00e601a45f41d7210 /library/menubutton.cpp
parent47fc358e914aecd13c4cb3d9cb4b3f2ca1a93b6c (diff)
downloadopie-98ed23c5281a57d08c6c18b464fc50b4638385f8.zip
opie-98ed23c5281a57d08c6c18b464fc50b4638385f8.tar.gz
opie-98ed23c5281a57d08c6c18b464fc50b4638385f8.tar.bz2
added a couple public methods- remove(int) count() text(int) and setUseLabel. see header for notes
Diffstat (limited to 'library/menubutton.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/menubutton.cpp71
1 files changed, 54 insertions, 17 deletions
diff --git a/library/menubutton.cpp b/library/menubutton.cpp
index 007761f..4357460 100644
--- a/library/menubutton.cpp
+++ b/library/menubutton.cpp
@@ -22,195 +22,232 @@
22#include <qpopupmenu.h> 22#include <qpopupmenu.h>
23 23
24/*! 24/*!
25 \class MenuButton menubutton.h 25 \class MenuButton menubutton.h
26 \brief The MenuButton class is a pushbutton with a menu. 26 \brief The MenuButton class is a pushbutton with a menu.
27 27
28 When the user presses the menubutton's pushbutton, the menu pops up. 28 When the user presses the menubutton's pushbutton, the menu pops up.
29 A menu is composed of menu items each of which has a string label, 29 A menu is composed of menu items each of which has a string label,
30 and optionally an icon. 30 and optionally an icon.
31 31
32 The index of the item that the user's input device (e.g. stylus) is 32 The index of the item that the user's input device (e.g. stylus) is
33 pointing at is the currentItem(), whose text is available using 33 pointing at is the currentItem(), whose text is available using
34 currentText(). 34 currentText().
35 35
36 Menu items are inserted with the \link MenuButton::MenuButton() 36 Menu items are inserted with the \link MenuButton::MenuButton()
37 constructor\endlink, insertItem() or insertItems(). Separators are 37 constructor\endlink, insertItem() or insertItems(). Separators are
38 inserted with insertSeparator(). All the items in the menu can be 38 inserted with insertSeparator(). All the items in the menu can be
39 removed by calling clear(). 39 removed by calling clear().
40 40
41 Items can be selected programmatically using select(). When a menu 41 Items can be selected programmatically using select(). When a menu
42 item is selected (programmatically or by the user), the selected() 42 item is selected (programmatically or by the user), the selected()
43 signal is emitted. 43 signal is emitted.
44 44
45 \ingroup qtopiaemb 45 \ingroup qtopiaemb
46*/ 46*/
47 47
48/*! 48/*!
49 \overload void MenuButton::selected(int index) 49 \overload void MenuButton::selected(int index)
50 50
51 This signal is emitted when the item at position \a index is selected. 51 This signal is emitted when the item at position \a index is selected.
52*/ 52*/
53 53
54/*! 54/*!
55 \fn void MenuButton::selected(const QString& text) 55 \fn void MenuButton::selected(const QString& text)
56 56
57 This signal is emitted when the item with the label \a text is selected. 57 This signal is emitted when the item with the label \a text is selected.
58*/ 58*/
59 59
60 60
61/*! 61/*!
62 Constructs a MenuButton. A menu item is created (see insertItem() 62 Constructs a MenuButton. A menu item is created (see insertItem()
63 and insertItems()) for each string in the \a items string list. The 63 and insertItems()) for each string in the \a items string list. The
64 standard \a parent an \a name arguments are passed to the base 64 standard \a parent an \a name arguments are passed to the base
65 class. 65 class.
66*/ 66*/
67MenuButton::MenuButton( const QStringList& items, QWidget* parent, const char* name) : 67MenuButton::MenuButton( const QStringList& items, QWidget* parent, const char* name) :
68 QPushButton(parent,name) 68 QPushButton(parent,name)
69{ 69{
70 useLabel = true;
70 init(); 71 init();
71 insertItems(items); 72 insertItems(items);
72} 73}
73 74
74/*! 75/*!
75 Constructs an empty MenuButton. 76 Constructs an empty MenuButton.
76 The standard \a parent an \a name arguments are passed to the base class. 77 The standard \a parent an \a name arguments are passed to the base class.
77 78
78 \sa insertItem() insertItems() 79 \sa insertItem() insertItems()
79*/ 80*/
80MenuButton::MenuButton( QWidget* parent, const char* name) : 81MenuButton::MenuButton( QWidget* parent, const char* name) :
81 QPushButton(parent,name) 82 QPushButton(parent,name)
82{ 83{
83 init(); 84 init();
84} 85}
85 86
86void MenuButton::init() 87void MenuButton::init()
87{ 88{
88 setAutoDefault(FALSE); 89 setAutoDefault(FALSE);
89 pop = new QPopupMenu(this); 90 pop = new QPopupMenu(this);
90 nitems=0; 91 nitems=0;
91 connect(pop, SIGNAL(activated(int)), this, SLOT(select(int))); 92 connect(pop, SIGNAL(activated(int)), this, SLOT(select(int)));
92 setPopup(pop); 93 setPopup(pop);
93 //setPopupDelay(0); 94 //setPopupDelay(0);
94} 95}
95 96
96/*! 97/*!
97 Removes all the menu items from the button and menu. 98 Removes all the menu items from the button and menu.
98*/ 99*/
99void MenuButton::clear() 100void MenuButton::clear()
100{ 101{
101 delete pop; 102 delete pop;
102 init(); 103 init();
103} 104}
104 105
105/*! 106/*!
106 A menu item is created (see insertItem()) for each string in the \a 107 A menu item is created (see insertItem()) for each string in the \a
107 items string list. If any string is "--" a separator (see 108 items string list. If any string is "--" a separator (see
108 insertSeparator()) is inserted in its place. 109 insertSeparator()) is inserted in its place.
109*/ 110*/
110void MenuButton::insertItems( const QStringList& items ) 111void MenuButton::insertItems( const QStringList& items )
111{ 112{
112 QStringList::ConstIterator it=items.begin(); 113 QStringList::ConstIterator it=items.begin();
113 for (; it!=items.end(); ++it) { 114 for (; it!=items.end(); ++it) {
114 if ( (*it) == "--" ) 115 if ( (*it) == "--" )
115 insertSeparator(); 116 insertSeparator();
116 else 117 else
117 insertItem(*it); 118 insertItem(*it);
118 } 119 }
119} 120}
120 121
121/*! 122/*!
122 Inserts a menu item with the icon \a icon and label \a text into 123 Inserts a menu item with the icon \a icon and label \a text into
123 the menu. 124 the menu.
124 125
125 \sa insertItems() 126 \sa insertItems()
126*/ 127*/
127void MenuButton::insertItem( const QIconSet& icon, const QString& text ) 128void MenuButton::insertItem( const QIconSet& icon, const QString& text )
128{ 129{
129 pop->insertItem(icon, text, nitems++); 130 pop->insertItem(icon, text, nitems++);
130 if ( nitems==1 ) select(0); 131// if ( nitems==1 ) select(0);
131} 132}
132 133
133/*! 134/*!
134 \overload 135 \overload
135 Inserts a menu item with the label \a text into the menu. 136 Inserts a menu item with the label \a text into the menu.
136 137
137 \sa insertItems() 138 \sa insertItems()
138*/ 139*/
139void MenuButton::insertItem( const QString& text ) 140void MenuButton::insertItem( const QString& text )
140{ 141{
141 pop->insertItem(text, nitems++); 142 pop->insertItem(text, nitems++);
142 if ( nitems==1 ) select(0); 143// if ( nitems==1 ) select(0);
143} 144}
144 145
145/*! 146/*!
146 Inserts a separator into the menu. 147 Inserts a separator into the menu.
147 148
148 \sa insertItems() 149 \sa insertItems()
149*/ 150*/
150void MenuButton::insertSeparator() 151void MenuButton::insertSeparator()
151{ 152{
152 pop->insertSeparator(); 153 pop->insertSeparator();
153} 154}
154 155
155/*! 156/*!
156 Selects the items with label text \a s. 157 Selects the items with label text \a s.
157*/ 158*/
158void MenuButton::select(const QString& s) 159void MenuButton::select(const QString& s)
159{ 160{
160 for (int i=0; i<nitems; i++) { 161 for (int i=0; i<nitems; i++) {
161 if ( pop->text(i) == s ) { 162 if ( pop->text(i) == s ) {
162 select(i); 163 select(i);
163 break; 164 break;
164 } 165 }
165 } 166 }
166} 167}
167 168
168/*! 169/*!
169 \overload 170 \overload
170 Selects the item at index position \a s. 171 Selects the item at index position \a s.
171*/ 172*/
172void MenuButton::select(int s) 173void MenuButton::select(int s)
173{ 174{
174 cur = s; 175 cur = s;
175 updateLabel(); 176 updateLabel();
176 if ( pop->iconSet(cur) ) 177 if ( pop->iconSet(cur) )
177 setIconSet(*pop->iconSet(cur)); 178 setIconSet(*pop->iconSet(cur));
178 emit selected(cur); 179 emit selected(cur);
179 emit selected(currentText()); 180 emit selected(currentText());
180} 181}
181 182
182/*! 183/*!
183 Returns the index position of the current item. 184 Returns the index position of the current item.
184*/ 185*/
185int MenuButton::currentItem() const 186int MenuButton::currentItem() const
186{ 187{
187 return cur; 188 return cur;
188} 189}
189 190
190/*! 191/*!
191 Returns the label text of the current item. 192 Returns the label text of the current item.
192*/ 193*/
193QString MenuButton::currentText() const 194QString MenuButton::currentText() const
194{ 195{
195 return pop->text(cur); 196 return pop->text(cur);
196} 197}
197 198
198/*! 199/*!
199 Sets the menubutton's label. If \a label is empty, the 200 Sets the menubutton's label. If \a label is empty, the
200 current item text is displayed, otherwise \a label should contain 201 current item text is displayed, otherwise \a label should contain
201 "%1", which will be replaced by the current item text. 202 "%1", which will be replaced by the current item text.
202*/ 203*/
203void MenuButton::setLabel(const QString& label) 204void MenuButton::setLabel(const QString& label)
204{ 205{
205 lab = label; 206 lab = label;
206 updateLabel(); 207 updateLabel();
207} 208}
208 209
209void MenuButton::updateLabel() 210void MenuButton::updateLabel()
210{ 211{
211 QString t = pop->text(cur); 212 if(useLabel)
212 if ( !lab.isEmpty() ) 213 {
213 t = lab.arg(t); 214 QString t = pop->text(cur);
214 setText(t); 215 if ( !lab.isEmpty() )
216 t = lab.arg(t);
217 setText(t);
218 }
215} 219}
216 220
221
222/*!
223 remove item at id
224 */
225void MenuButton::remove(int id)
226{
227 pop->removeItem(id);
228 nitems--;
229}
230
231/*!
232 return count of items in menu
233 */
234int MenuButton::count()
235{
236 return nitems;
237}
238
239/*!
240 returns text of item id
241 */
242QString MenuButton::text(int id)
243{
244 return pop->text(id);
245}
246
247/*!
248 sets true or false the use of label
249 */
250void MenuButton::setUseLabel(bool b)
251{
252 useLabel = b;
253}