Aegisub/aegisub/src/dialog_style_manager.h

318 lines
6.1 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_manager.h
/// @see dialog_style_manager.cpp
/// @ingroup style_editor
///
2006-01-16 22:02:54 +01:00
#ifndef DIALOG_STYLE_MANAGER_H
/// DOCME
2006-01-16 22:02:54 +01:00
#define DIALOG_STYLE_MANAGER_H
////////////
// Includes
#include <wx/dialog.h>
#include <wx/combobox.h>
#include <wx/listbox.h>
#include <wx/button.h>
2006-01-16 22:02:54 +01:00
#include <vector>
#include "ass_style_storage.h"
//////////////
// Prototypes
class AssFile;
class AssStyle;
class SubtitlesGrid;
/// DOCME
/// @class DialogStyleManager
/// @brief DOCME
///
/// DOCME
2006-01-16 22:02:54 +01:00
class DialogStyleManager : public wxDialog {
private:
/// DOCME
2006-01-16 22:02:54 +01:00
std::vector<AssStyle*> styleMap;
/// DOCME
2006-01-16 22:02:54 +01:00
std::vector<AssStyle*> styleStorageMap;
/// DOCME
2006-01-16 22:02:54 +01:00
SubtitlesGrid *grid;
/// DOCME
2006-01-16 22:02:54 +01:00
wxComboBox *CatalogList;
/// DOCME
2006-01-16 22:02:54 +01:00
wxListBox *StorageList;
/// DOCME
2006-01-16 22:02:54 +01:00
wxListBox *CurrentList;
/// DOCME
2006-01-16 22:02:54 +01:00
wxButton *MoveToLocal;
/// DOCME
2006-01-16 22:02:54 +01:00
wxButton *StorageNew;
/// DOCME
wxButton *StorageEdit;
/// DOCME
2006-01-16 22:02:54 +01:00
wxButton *StorageCopy;
/// DOCME
2006-01-16 22:02:54 +01:00
wxButton *StorageDelete;
/// DOCME
wxButton *StorageMoveUp;
/// DOCME
wxButton *StorageMoveDown;
/// DOCME
wxButton *StorageMoveTop;
/// DOCME
wxButton *StorageMoveBottom;
/// DOCME
wxButton *StorageSort;
/// DOCME
2006-01-16 22:02:54 +01:00
wxButton *MoveToStorage;
/// DOCME
2006-01-16 22:02:54 +01:00
wxButton *CurrentNew;
/// DOCME
wxButton *CurrentEdit;
/// DOCME
2006-01-16 22:02:54 +01:00
wxButton *CurrentCopy;
/// DOCME
2006-01-16 22:02:54 +01:00
wxButton *CurrentDelete;
/// DOCME
wxButton *CurrentMoveUp;
/// DOCME
wxButton *CurrentMoveDown;
/// DOCME
wxButton *CurrentMoveTop;
/// DOCME
wxButton *CurrentMoveBottom;
/// DOCME
wxButton *CurrentSort;
2006-01-16 22:02:54 +01:00
/// DOCME
2006-01-16 22:02:54 +01:00
AssStyleStorage Store;
void StorageActions (bool state);
void LoadCatalog ();
void LoadCurrentStyles (AssFile *subs);
void LoadStorageStyles ();
void UpdateMoveButtons();
void MoveStyles(bool storage,int type);
2006-01-16 22:02:54 +01:00
/// DOCME
/// DOCME
2006-01-16 22:02:54 +01:00
static int lastx, lasty;
public:
/// DOCME
2006-01-16 22:02:54 +01:00
wxSizer *MainSizer;
DialogStyleManager(wxWindow *parent,SubtitlesGrid *grid);
~DialogStyleManager();
void OnClose (wxCommandEvent &event);
void OnChangeCatalog (wxCommandEvent &event);
void OnCatalogNew (wxCommandEvent &event);
void OnCatalogDelete (wxCommandEvent &event);
void OnStorageEdit (wxCommandEvent &event);
void OnCurrentEdit (wxCommandEvent &event);
void OnCurrentMoveUp (wxCommandEvent &event);
void OnCurrentMoveDown (wxCommandEvent &event);
void OnCurrentMoveTop (wxCommandEvent &event);
void OnCurrentMoveBottom (wxCommandEvent &event);
void OnCurrentSort (wxCommandEvent &event);
2006-01-16 22:02:54 +01:00
void OnStorageChange (wxCommandEvent &event);
void OnCurrentChange (wxCommandEvent &event);
void OnCopyToStorage (wxCommandEvent &event);
void OnCopyToCurrent (wxCommandEvent &event);
void OnStorageCopy (wxCommandEvent &event);
void OnCurrentCopy (wxCommandEvent &event);
void OnStorageNew (wxCommandEvent &event);
void OnCurrentNew (wxCommandEvent &event);
void OnStorageMoveUp (wxCommandEvent &event);
void OnStorageMoveDown (wxCommandEvent &event);
void OnStorageMoveTop (wxCommandEvent &event);
void OnStorageMoveBottom (wxCommandEvent &event);
void OnStorageSort (wxCommandEvent &event);
2006-01-16 22:02:54 +01:00
void OnStorageDelete (wxCommandEvent &event);
void OnCurrentDelete (wxCommandEvent &event);
void OnCurrentImport (wxCommandEvent &event);
void OnKeyDown (wxKeyEvent &event);
void CopyToClipboard (wxListBox *list, std::vector<AssStyle*> v);
void PasteToCurrent();
void PasteToStorage();
2006-01-16 22:02:54 +01:00
DECLARE_EVENT_TABLE()
2006-01-16 22:02:54 +01:00
};
///////
// IDs
enum {
/// DOCME
2006-01-16 22:02:54 +01:00
BUTTON_CATALOG_NEW = 1000,
/// DOCME
2006-01-16 22:02:54 +01:00
BUTTON_CATALOG_DELETE,
/// DOCME
2006-01-16 22:02:54 +01:00
BUTTON_STORAGE_COPYTO,
/// DOCME
2006-01-16 22:02:54 +01:00
BUTTON_STORAGE_NEW,
/// DOCME
BUTTON_STORAGE_EDIT,
/// DOCME
2006-01-16 22:02:54 +01:00
BUTTON_STORAGE_COPY,
/// DOCME
2006-01-16 22:02:54 +01:00
BUTTON_STORAGE_DELETE,
/// DOCME
BUTTON_STORAGE_UP,
/// DOCME
BUTTON_STORAGE_DOWN,
/// DOCME
BUTTON_STORAGE_TOP,
/// DOCME
BUTTON_STORAGE_BOTTOM,
/// DOCME
BUTTON_STORAGE_SORT,
/// DOCME
2006-01-16 22:02:54 +01:00
BUTTON_CURRENT_COPYTO,
/// DOCME
2006-01-16 22:02:54 +01:00
BUTTON_CURRENT_NEW,
/// DOCME
BUTTON_CURRENT_EDIT,
/// DOCME
2006-01-16 22:02:54 +01:00
BUTTON_CURRENT_COPY,
/// DOCME
2006-01-16 22:02:54 +01:00
BUTTON_CURRENT_DELETE,
/// DOCME
BUTTON_CURRENT_IMPORT,
/// DOCME
BUTTON_CURRENT_UP,
/// DOCME
BUTTON_CURRENT_DOWN,
/// DOCME
BUTTON_CURRENT_TOP,
/// DOCME
BUTTON_CURRENT_BOTTOM,
/// DOCME
BUTTON_CURRENT_SORT,
/// DOCME
2006-01-16 22:02:54 +01:00
LIST_CATALOG,
/// DOCME
2006-01-16 22:02:54 +01:00
LIST_STORAGE,
/// DOCME
2006-01-16 22:02:54 +01:00
LIST_CURRENT
};
/// DOCME
/// @class DialogStyleManagerEvent
/// @brief DOCME
///
/// DOCME
class DialogStyleManagerEvent : public wxEvtHandler {
private:
/// DOCME
DialogStyleManager *control;
void OnKeyDown(wxKeyEvent &event);
public:
DialogStyleManagerEvent(DialogStyleManager *control);
DECLARE_EVENT_TABLE()
};
2006-01-16 22:02:54 +01:00
#endif