]> ruin.nu Git - hbs.git/blob - bs/ui/fleetviewbase.ui.h
commiting the basic structure and some test code
[hbs.git] / bs / ui / fleetviewbase.ui.h
1 /****************************************************************************
2 ** ui.h extension file, included from the uic-generated form implementation.
3 **
4 ** If you wish to add, delete or rename slots use Qt Designer which will
5 ** update this file, preserving your code. Create an init() slot in place of
6 ** a constructor, and a destroy() slot in place of a destructor.
7 *****************************************************************************/
8
9
10 void FleetViewBase::slotAttacker(bool b)
11 {
12     if (b)
13     {
14         CaptureBox->show();
15         SalvageBox->hide();
16     }
17     else
18     {
19         SalvageBox->show();
20         CaptureBox->hid();
21     }
22 }