diff options
author | Tametomo <irarice@gmail.com> | 2009-04-21 15:42:11 -0600 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-04-29 20:26:12 +0200 |
commit | 86ec58bf1456a6349e3ac162387a630a8ffb11d7 (patch) | |
tree | 36ad0b7464f61e54daa1be43c5d8f616acbfe524 /src/gui/buysell.h | |
parent | 6df16720da3ae3257636e000c10b62d0b99f752e (diff) | |
download | mana-86ec58bf1456a6349e3ac162387a630a8ffb11d7.tar.gz mana-86ec58bf1456a6349e3ac162387a630a8ffb11d7.tar.bz2 mana-86ec58bf1456a6349e3ac162387a630a8ffb11d7.tar.xz mana-86ec58bf1456a6349e3ac162387a630a8ffb11d7.zip |
Set default focuses on the BuySell dialog, the Buy dialog, and the Sell
dialog to reduce the amount of needed tabbing by the user when using the
keyboard to use these dialogs.
Signed-off-by: Tametomo <irarice@gmail.com>
Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl>
Diffstat (limited to 'src/gui/buysell.h')
-rw-r--r-- | src/gui/buysell.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/buysell.h b/src/gui/buysell.h index ab6d0c92..13fbea8c 100644 --- a/src/gui/buysell.h +++ b/src/gui/buysell.h @@ -53,6 +53,9 @@ class BuySellDialog : public Window, public gcn::ActionListener * Called when receiving actions from the widgets. */ void action(const gcn::ActionEvent &event); + + private: + gcn::Button* buyButton; }; extern BuySellDialog *buySellDialog; |