File: setgotodialog.h

package info (click to toggle)
tiatracker 1.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 6,668 kB
  • sloc: cpp: 8,875; asm: 664; makefile: 10
file content (33 lines) | stat: -rw-r--r-- 630 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* TIATracker, (c) 2016 Andre "Kylearan" Wichmann.
 * Website: https://bitbucket.org/kylearan/tiatracker
 * Email: andre.wichmann@gmx.de
 * See the file "license.txt" for information on usage and redistribution
 * of this file.
 */

#ifndef SETGOTODIALOG_H
#define SETGOTODIALOG_H

#include <QDialog>

namespace Ui {
class SetGotoDialog;
}

class SetGotoDialog : public QDialog
{
    Q_OBJECT

public:
    explicit SetGotoDialog(QWidget *parent = 0);
    ~SetGotoDialog();

    void setMaxValue(int max);
    void setGotoValue(int value);
    int getGotoValue();

private:
    Ui::SetGotoDialog *ui;
};

#endif // SETGOTODIALOG_H