~ubuntu-branches/ubuntu/quantal/linpsk/quantal

« back to all changes in this revision

Viewing changes to linpsk/ctxdisplay.h

  • Committer: Bazaar Package Importer
  • Author(s): Bruce Walker
  • Date: 2002-02-06 11:43:38 UTC
  • Revision ID: james.westby@ubuntu.com-20020206114338-xqmjmhh01lpjm0g4
Tags: upstream-0.6.2
ImportĀ upstreamĀ versionĀ 0.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          ctxdisplay.h  -  description
 
3
                             -------------------
 
4
    begin                : Sun Sep 17 2000
 
5
    copyright            : (C) 2000 by Volker Schroer
 
6
    email                : DL1KSV@gmx.de
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *   based on the work of Moe Wheatley, AE4JY                              *
 
16
 ***************************************************************************/
 
17
 
 
18
#ifndef CTXDISPLAY_H
 
19
#define CTXDISPLAY_H
 
20
 
 
21
#include <qwidget.h>
 
22
#include <qframe.h>
 
23
#include <qlabel.h>
 
24
#include <qradiobutton.h>
 
25
#include <qspinbox.h>
 
26
#include <qpushbutton.h>
 
27
#include "ctxwindow.h"
 
28
#include "crxselect.h"
 
29
#include "cledbutton.h"
 
30
/**Txdisplay including control elements
 
31
  *@author Volker Schroer
 
32
  */
 
33
 
 
34
 
 
35
 
 
36
class CTxdisplay : public QFrame  {
 
37
   Q_OBJECT
 
38
public: 
 
39
        CTxdisplay(QWidget *parent=0, const char *name=0);
 
40
        ~CTxdisplay();
 
41
         CTxwindow *txwindow;
 
42
         int getTxFrequency();
 
43
 
 
44
 /** Start Receiving /Transmitting */
 
45
         CLedButton *start;
 
46
 /** Selecting Rx- Window */
 
47
        CRxSelect *SelectRxWindow;
 
48
 
 
49
 
 
50
private:
 
51
// Tx Parameters
 
52
 QGroupBox *transmit;
 
53
 QRadioButton *bnet;
 
54
 QSpinBox *txfreq;
 
55
 int txfrequency;                               //TX frequency
 
56
 
 
57
 
 
58
protected:
 
59
        void resizeEvent(QResizeEvent *);
 
60
        
 
61
public slots:
 
62
void changetxfreq(int); 
 
63
 
 
64
        
 
65
};
 
66
 
 
67
#endif