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

« back to all changes in this revision

Viewing changes to linpsk/editmacro.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
                          editmacro.h  -  description
 
3
                             -------------------
 
4
    begin                : Mon May 22 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 EDITMACRO_H
 
19
#define EDITMACRO_H
 
20
 
 
21
#include <qwidget.h>
 
22
#include <qdialog.h>
 
23
#include <qlineedit.h>
 
24
#include <qlabel.h>
 
25
#include <qpushbutton.h>
 
26
 
 
27
#include "parameter.h"
 
28
 
 
29
/**WIndow for editing Macros
 
30
  *@author Volker Schroer
 
31
  */
 
32
 
 
33
extern Parameter settings;
 
34
 
 
35
class editMacro : public QDialog  {
 
36
   Q_OBJECT
 
37
public: 
 
38
        editMacro(QWidget *parent=0, const char *name=0);
 
39
        ~editMacro();
 
40
QLineEdit *WMacro0;
 
41
QLineEdit *WMacro1;
 
42
QLineEdit       *WMacro2;
 
43
QLineEdit *WMacro3;
 
44
};
 
45
 
 
46
#endif