]> git.sesse.net Git - kdenlive/blob - src/titlewidget.h
start/endviewport not setup'able
[kdenlive] / src / titlewidget.h
1 /***************************************************************************
2                           titlewidget.h  -  description
3                              -------------------
4     begin                : Feb 28 2008
5     copyright            : (C) 2008 by Marco Gittler
6     email                : g.marco@freenet.de
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 #ifndef TITLEWIDGET_H
19 #define TITLEWIDGET_H
20
21 #include "ui_titlewidget_ui.h"
22 #include <QDialog>
23
24 class TitleWidget : public QDialog , public Ui::TitleWidget_UI{
25         Q_OBJECT
26 public:
27         TitleWidget(QDialog *parent=0);
28 private:
29         QGraphicsPolygonItem *startViewport,*endViewport;
30 public slots:
31         void slotNewText();
32         void slotNewRect();
33         void slotChangeBackground();
34         void selectionChanged();
35         void textChanged();
36         void rectChanged();
37         void fontBold();
38         void setupViewports();
39 };
40
41
42 #endif