Eneboo - Documentación para desarrolladores
|
00001 /* -*- mode: C++ ; c-file-style: "stroustrup" -*- ***************************** 00002 * Qwt Widget Library 00003 * Copyright (C) 1997 Josef Wilgen 00004 * Copyright (C) 2002 Uwe Rathmann 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the Qwt License, Version 1.0 00008 *****************************************************************************/ 00009 00010 #ifndef QWT_DESIGNER_PLOTDIALOG_H 00011 #define QWT_DESIGNER_PLOTDIALOG_H 00012 00013 #include <qglobal.h> 00014 00015 #if QT_VERSION < 0x040000 00016 #ifdef __GNUC__ 00017 #error This code is Qt4 only 00018 #endif 00019 #endif 00020 00021 #include <QDialog> 00022 00023 namespace QwtDesignerPlugin 00024 { 00025 00026 class PlotDialog: public QDialog 00027 { 00028 Q_OBJECT 00029 00030 public: 00031 PlotDialog(const QString &properties, QWidget *parent = NULL); 00032 00033 signals: 00034 void edited(const QString&); 00035 }; 00036 00037 } 00038 00039 #endif