~ubuntu-branches/ubuntu/karmic/kguitar/karmic

« back to all changes in this revision

Viewing changes to kguitar/setsong.h

  • Committer: Bazaar Package Importer
  • Author(s): Loic Pefferkorn
  • Date: 2005-08-19 15:22:41 UTC
  • Revision ID: james.westby@ubuntu.com-20050819152241-n24w9np4vblrm5as
Tags: upstream-0.5
ImportĀ upstreamĀ versionĀ 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SETSONG_H
 
2
#define SETSONG_H
 
3
 
 
4
#include <qdialog.h>
 
5
#include "global.h"
 
6
 
 
7
class QLineEdit;
 
8
class QMultiLineEdit;
 
9
class KIntNumInput;
 
10
 
 
11
class SetSong: public QDialog
 
12
{
 
13
    Q_OBJECT
 
14
public:
 
15
    SetSong(QWidget *parent=0, const char *name=0);
 
16
 
 
17
    QLineEdit *title, *author, *transcriber;
 
18
    QMultiLineEdit *comments;
 
19
 
 
20
        KIntNumInput *tempo;
 
21
private:
 
22
};
 
23
 
 
24
#endif