~ubuntu-branches/debian/squeeze/linpsk/squeeze

« back to all changes in this revision

Viewing changes to src/interfaces/addrxwindow.ui.h

  • Committer: Bazaar Package Importer
  • Author(s): Hamish Moffatt
  • Date: 2005-04-10 18:17:27 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050410181727-3l9dnfg0sp7bhk13
Tags: 0.8.1-1
* New upstream release 0.8.1
  * Modified upstream configure.in to support FHS-compliant Qt
    installation! (ie /usr/include/qt3, not /usr/lib/qt3/include) :-(
  * Re-autotools with autoconf2.59 and automake-1.9
* linpsk is no longer a Debian-native package (dsc/tar.gz)
* Now maintained by the debian-hams group
* Switch to debhelper 4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
** ui.h extension file, included from the uic-generated form implementation.
 
3
**
 
4
** If you wish to add, delete or rename functions or slots use
 
5
** Qt Designer which will update this file, preserving your code. Create an
 
6
** init() function in place of a constructor, and a destroy() function in
 
7
** place of a destructor.
 
8
*****************************************************************************/
 
9
#include "parameter.h"
 
10
 
 
11
extern Parameter settings;
 
12
 
 
13
void AddRxWindow::init()
 
14
{
 
15
//RxMode->setFixedHeight(40);
 
16
RxMode->insertItem("BPSK",0);
 
17
RxMode->insertItem("QPSK",1);
 
18
RxMode->insertItem("RTTY",2);
 
19
RxMode->insertItem("MFSK16",3);
 
20
RxMode->setSelected(0,true);
 
21
TitleText->setText("Rx " + QString().setNum(settings.RxChannels+1));
 
22
}
 
23
 
 
24
 
 
25