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

« back to all changes in this revision

Viewing changes to kguitar/chordlist.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 CHORDLIST_H
 
2
#define CHORDLIST_H
 
3
 
 
4
#include <qlistbox.h>
 
5
#include "global.h"
 
6
 
 
7
#include "chordlistitem.h"
 
8
 
 
9
class ChordList: public QListBox
 
10
{
 
11
    Q_OBJECT
 
12
public:
 
13
    ChordList(QWidget *parent=0, const char *name=0);
 
14
    ChordListItem* currentItemPointer();
 
15
    void inSort(ChordListItem *it);
 
16
};
 
17
 
 
18
#endif