SeExpr
ImageEditorDialog.h
Go to the documentation of this file.
1 /*
2 * Copyright Disney Enterprises, Inc. All rights reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License
6 * and the following modification to it: Section 6 Trademarks.
7 * deleted and replaced with:
8 *
9 * 6. Trademarks. This License does not grant permission to use the
10 * trade names, trademarks, service marks, or product names of the
11 * Licensor and its affiliates, except as required for reproducing
12 * the content of the NOTICE file.
13 *
14 * You may obtain a copy of the License at
15 * http://www.apache.org/licenses/LICENSE-2.0
16 */
17 
22 #include <QtGui/QDialog>
23 
24 class QLabel;
25 class ExprEditor;
26 class ImageSynthesizer;
27 
28 class ImageEditorDialog: public QDialog
29 {
30  Q_OBJECT
31 public:
32  ImageEditorDialog(QWidget *parent=0);
33 private:
34  QLabel *_imageLabel;
35  ExprEditor *_editor;
36  ImageSynthesizer *_imageSynthesizer;
37 private slots:
38  void applyExpression();
39 };