Aegisub/aegisub/src/dialog_style_editor.h

187 lines
4.3 KiB
C
Raw Normal View History

2006-01-16 22:02:54 +01:00
// Copyright (c) 2005, Rodrigo Braz Monteiro
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * Neither the name of the Aegisub Group nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
// Aegisub Project http://www.aegisub.org/
2006-01-16 22:02:54 +01:00
//
// $Id$
/// @file dialog_style_editor.h
/// @see dialog_style_editor.cpp
/// @ingroup style_editor
///
2006-01-16 22:02:54 +01:00
#ifndef AGI_PRE
#include <wx/checkbox.h>
#include <wx/combobox.h>
#include <wx/radiobox.h>
#include <wx/spinctrl.h>
#include <wx/textctrl.h>
#endif
#include "colour_button.h"
2006-01-16 22:02:54 +01:00
namespace agi { struct Context; }
2006-01-16 22:02:54 +01:00
class AssStyle;
class SubtitlesPreview;
class AssStyleStorage;
2006-01-16 22:02:54 +01:00
/// DOCME
/// @class DialogStyleEditor
/// @brief DOCME
///
/// DOCME
2006-01-16 22:02:54 +01:00
class DialogStyleEditor : public wxDialog {
agi::Context *c;
/// DOCME
bool isLocal;
/// If true, the style was just created and so the user should not be
/// asked if they want to change any existing lines should they rename
/// the style
bool isNew;
/// DOCME
2006-01-16 22:02:54 +01:00
AssStyle *style;
/// DOCME
2006-01-16 22:02:54 +01:00
AssStyle *work;
/// DOCME
AssStyleStorage *store;
2006-01-16 22:02:54 +01:00
/// DOCME
2006-01-16 22:02:54 +01:00
wxTextCtrl *StyleName;
/// DOCME
wxComboBox *FontName;
/// DOCME
2006-01-16 22:02:54 +01:00
wxTextCtrl *FontSize;
/// DOCME
2006-01-16 22:02:54 +01:00
wxCheckBox *BoxBold;
/// DOCME
2006-01-16 22:02:54 +01:00
wxCheckBox *BoxItalic;
/// DOCME
2006-01-16 22:02:54 +01:00
wxCheckBox *BoxUnderline;
/// DOCME
2006-01-16 22:02:54 +01:00
wxCheckBox *BoxStrikeout;
/// DOCME
ColourButton *colorButton[4];
/// DOCME
wxSpinCtrl *colorAlpha[4];
/// DOCME
wxSpinCtrl *margin[4];
/// DOCME
2006-01-16 22:02:54 +01:00
wxRadioBox *Alignment;
/// DOCME
2006-01-16 22:02:54 +01:00
wxTextCtrl *Outline;
/// DOCME
2006-01-16 22:02:54 +01:00
wxTextCtrl *Shadow;
/// DOCME
2006-01-16 22:02:54 +01:00
wxCheckBox *OutlineType;
/// DOCME
2006-01-16 22:02:54 +01:00
wxTextCtrl *ScaleX;
/// DOCME
2006-01-16 22:02:54 +01:00
wxTextCtrl *ScaleY;
/// DOCME
2006-01-16 22:02:54 +01:00
wxTextCtrl *Angle;
/// DOCME
wxComboBox *Encoding;
/// DOCME
2006-01-16 22:02:54 +01:00
wxTextCtrl *Spacing;
/// DOCME
wxTextCtrl *PreviewText;
/// DOCME
SubtitlesPreview *SubsPreview;
/// DOCME
ColourButton *previewButton;
/// DOCME
2006-01-16 22:02:54 +01:00
wxSizer *MainSizer;
/// DOCME
static wxRect saved_position;
/// DOCME
static bool use_saved_position;
void SavePosition();
void LoadPosition();
2006-01-16 22:02:54 +01:00
void SetBitmapColor (int n,wxColour color);
int AlignToControl (int n);
int ControlToAlign (int n);
void UpdateWorkStyle ();
2006-01-16 22:02:54 +01:00
void OnApply (wxCommandEvent &event);
void OnCancel (wxCommandEvent &event);
void OnOK (wxCommandEvent &event);
void OnChooseFont (wxCommandEvent &event);
void OnSetColor1 (wxCommandEvent &event);
void OnSetColor2 (wxCommandEvent &event);
void OnSetColor3 (wxCommandEvent &event);
void OnSetColor4 (wxCommandEvent &event);
void OnChildFocus (wxChildFocusEvent &event);
void OnCommandPreviewUpdate (wxCommandEvent &event);
/// @brief DOCME
/// @param event
///
void OnSpinPreviewUpdate (wxSpinEvent &event) { OnCommandPreviewUpdate(event); }
void OnPreviewTextChange (wxCommandEvent &event);
void OnPreviewColourChange (wxCommandEvent &event);
2006-01-16 22:02:54 +01:00
public:
DialogStyleEditor(wxWindow *parent,AssStyle *style, agi::Context *c,bool local,AssStyleStorage *store,bool newStyle=false);
2006-01-16 22:02:54 +01:00
~DialogStyleEditor();
void Apply (bool apply,bool close);
void OnSetColor (int n);
DECLARE_EVENT_TABLE()
2006-01-16 22:02:54 +01:00
};