diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 19:09:31 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 19:09:31 +0000 |
commit | f2cfda2a54780868dfe0af7bd652fcd4906547da (patch) | |
tree | c6ac23545528f5701818424f2af5f79ce3665e6c /src/cuesheeteditor.h | |
download | soundkonverter-f2cfda2a54780868dfe0af7bd652fcd4906547da.tar.gz soundkonverter-f2cfda2a54780868dfe0af7bd652fcd4906547da.zip |
Added KDE3 version of SoundKonverter
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/soundkonverter@1097614 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/cuesheeteditor.h')
-rwxr-xr-x | src/cuesheeteditor.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/cuesheeteditor.h b/src/cuesheeteditor.h new file mode 100755 index 0000000..db5d986 --- /dev/null +++ b/src/cuesheeteditor.h @@ -0,0 +1,50 @@ + + +#ifndef CUESHEETEDITOR_H +#define CUESHEETEDITOR_H + +#include <kdialog.h> +#include <ktextedit.h> + + +//class KTextEdit; +class KPushButton; + +/** + * @short The editor tool for cuesheet files + * @author Daniel Faust <[email protected]> + * @version 0.3 + */ +class CuesheetEditor : public KDialog +{ + Q_OBJECT +public: + /** + * Default Constructor + */ + CuesheetEditor( QWidget* parent=0, const char* name=0, bool modal=true, WFlags f=0 ); + + /** + * Default Destructor + */ + virtual ~CuesheetEditor(); + + void setContent( const QString& text ) { tTextEdit->setText( text ); } + +private slots: + void help(); + void convert(); + void generate(); + void shift(); + +private: + KTextEdit* tTextEdit; + KPushButton* pHelp; + KPushButton* pGenerate; + KPushButton* pConvert; + KPushButton* pShift; + KPushButton* pOk; + +}; + +#endif // CUESHEETEDITOR_H |