File: mainwindow.h

package info (click to toggle)
qwt 6.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 23,900 kB
  • sloc: cpp: 57,678; xml: 182; makefile: 47
file content (27 lines) | stat: -rw-r--r-- 377 bytes parent folder | download | duplicates (2)
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
#ifndef MAIN_WINDOW_H
#define MAIN_WINDOW_H

#include <qmainwindow.h>

class Canvas;
class QPainterPath;

class MainWindow: public QMainWindow
{
    Q_OBJECT

public:
    MainWindow();
    virtual ~MainWindow();

private Q_SLOTS:
    void loadSVG();

private:
    void loadSVG( const QString & );
    void loadPath( const QPainterPath & );

    Canvas *d_canvas[2];
};

#endif