00001 /* 00002 * (c) Disney Enterprises, Inc. All rights reserved. 00003 * 00004 * This file is licensed under the terms of the Microsoft Public License (MS-PL) 00005 * as defined at: http://opensource.org/licenses/MS-PL. 00006 * 00007 * A complete copy of this license is included in this distribution as the file 00008 * LICENSE. 00009 */ 00010 00015 #include <QtGui/QDialog> 00016 00017 class QLabel; 00018 class SeExprEditor; 00019 class ImageSynthesizer; 00020 00021 class ImageEditorDialog: public QDialog 00022 { 00023 Q_OBJECT 00024 public: 00025 ImageEditorDialog(QWidget *parent=0); 00026 private: 00027 QLabel *_imageLabel; 00028 SeExprEditor *_editor; 00029 ImageSynthesizer *_imageSynthesizer; 00030 private slots: 00031 void applyExpression(); 00032 };