Corrected some mistakes in old dialog headers
This commit is contained in:
parent
37123f84b6
commit
7ae08aa608
2 changed files with 20 additions and 25 deletions
|
|
@ -27,9 +27,7 @@
|
|||
#ifndef PREFERENCES_DIALOG_HPP
|
||||
#define PREFERENCES_DIALOG_HPP
|
||||
|
||||
#include <gtkmm.h>
|
||||
|
||||
using namespace Gtk;
|
||||
#include "../gtk-lumiera.hpp"
|
||||
|
||||
namespace gui {
|
||||
namespace dialogs {
|
||||
|
|
@ -37,20 +35,19 @@ namespace dialogs {
|
|||
/**
|
||||
* The defintion of render output dialog class
|
||||
*/
|
||||
class PreferencesDialog : public Dialog
|
||||
class PreferencesDialog : public Gtk::Dialog
|
||||
{
|
||||
public:
|
||||
PreferencesDialog(Window &parent);
|
||||
PreferencesDialog(Gtk::Window &parent);
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
protected:
|
||||
Notebook notebook;
|
||||
|
||||
VBox interfaceBox;
|
||||
ComboBox interfaceThemeCombo;
|
||||
Gtk::Notebook notebook;
|
||||
|
||||
Gtk::VBox interfaceBox;
|
||||
Gtk::ComboBox interfaceThemeCombo;
|
||||
};
|
||||
|
||||
} // namespace dialogs
|
||||
|
|
|
|||
|
|
@ -27,9 +27,7 @@
|
|||
#ifndef RENDER_H
|
||||
#define RENDER_H
|
||||
|
||||
#include <gtkmm.h>
|
||||
|
||||
using namespace Gtk;
|
||||
#include "../gtk-lumiera.hpp"
|
||||
|
||||
namespace gui {
|
||||
namespace dialogs {
|
||||
|
|
@ -37,31 +35,31 @@ namespace dialogs {
|
|||
/**
|
||||
* The defintion of render output dialog class
|
||||
*/
|
||||
class Render : public Dialog
|
||||
class Render : public Gtk::Dialog
|
||||
{
|
||||
public:
|
||||
Render(Window &parent);
|
||||
Render(Gtk::Window &parent);
|
||||
|
||||
protected:
|
||||
void on_button_browse();
|
||||
|
||||
protected:
|
||||
HBox outputFileHBox;
|
||||
Label outputFileLabel;
|
||||
Entry outputFilePathEntry;
|
||||
Gtk::HBox outputFileHBox;
|
||||
Gtk::Label outputFileLabel;
|
||||
Gtk::Entry outputFilePathEntry;
|
||||
|
||||
Image browseButtonImage;
|
||||
Button outputFileBrowseButton;
|
||||
Gtk::Image browseButtonImage;
|
||||
Gtk::Button outputFileBrowseButton;
|
||||
|
||||
HBox containerFormatHBox;
|
||||
Label containerFormatLabel;
|
||||
ComboBox containerFormat;
|
||||
Gtk::HBox containerFormatHBox;
|
||||
Gtk::Label containerFormatLabel;
|
||||
Gtk::ComboBox containerFormat;
|
||||
|
||||
Frame audioFrame;
|
||||
Gtk::Frame audioFrame;
|
||||
|
||||
Frame videoFrame;
|
||||
Gtk::Frame videoFrame;
|
||||
|
||||
Image renderButtonImage;
|
||||
Gtk::Image renderButtonImage;
|
||||
};
|
||||
|
||||
} // namespace dialogs
|
||||
|
|
|
|||
Loading…
Reference in a new issue