1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/* -*- Mode: C++; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
/*
* SludgeProjectManager.h - Part of the SLUDGE Project Manager (GTK+ version)
*
* Copyright (C) 2010 Tobias Hansen <tobias.han@gmx.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "SludgeApplication.h"
enum whichTreeview {
FILE_TREEVIEW,
RESOURCE_TREEVIEW,
ERROR_TREEVIEW
};
enum whichProgram {
FLOORMAKER,
SPRITEBANKEDITOR,
ZBUFFERMAKER,
TRANSLATIONEDITOR
};
enum whichErrorsListStoreColumn {
ERRORS_COLUMN_FULLTEXT,
ERRORS_COLUMN_HAS_FILENAME,
ERRORS_COLUMN_FILENAME,
ERRORS_COLUMN_OVERVIEW,
ERRORS_N_COLUMNS
};
class SludgeProjectManager : public SludgeApplication {
private:
char workingDir[1000];
char editor[1000], imageViewer[1000], audioPlayer[1000], modPlayer[1000];
int numResources;
char *resourceList[1000];
char *fileList[1000];
int fileListNum;
GtkListStore *filesListStore;
GtkListStore *resourcesListStore;
GtkListStore *errorsListStore;
GtkTreeSelection *filesSelection;
GtkNotebook *notebook;
GtkWidget *saveItem, *saveAsItem, *projectPropertiesItem, *projectCompileItem, *projectRunGameItem;
GtkWidget *addFileButton, *removeFileButton;
GtkDialog *compilerDialog;
GtkProgressBar *compProgress1, *compProgress2;
GtkLabel *compTask, *compFile, *compItem, *compFuncs;
GtkLabel *compObjs, *compGlobs, *compStrings, *compResources;
GtkWidget *runGameButton, *closeCompilerButton;
GtkDialog *projectSettingsDialog;
GtkEntry *prefName, *prefQuit, *prefSave, *prefLanguage, *prefFilename, *prefIcon, *prefLogo;
GtkSpinButton *prefWidth, *prefHeight, *prefSpeed;
GtkToggleButton *prefSilent;
GtkDialog *preferenceDialog;
GtkToggleButton *prefKeepImages, *prefWriteStrings, *prefVerbose;
GtkEntry *prefEditor, *prefImageViewer, *prefAudioPlayer, *prefModPlayer;
public:
GAsyncQueue *compilerInfoQueue;
private:
// Concrete methods for SludgeApplication:
virtual gboolean init(gboolean calledFromConstructor);
virtual const char * getWindowTitle();
virtual const char * getFilterName();
virtual const char * getFilterPattern();
virtual const char * getUntitledFilename();
virtual gboolean saveFile(char *filename);
virtual gboolean loadFile(char *filename);
virtual void postNew();
virtual void postOpen();
void setupButtons();
void listChanged(whichTreeview whichOne);
void readIniFile();
void saveIniFile();
public:
SludgeProjectManager();
~SludgeProjectManager();
void compile();
void update_compile_window();
// Callbacks:
void on_treeview_realize(GtkTreeView *theTreeView, whichTreeview whichOne);
void on_files_tree_selection_changed(GtkTreeSelection *theSelection);
void on_treeview_row_activated(GtkTreeView *theTreeView, GtkTreePath *thePath, GtkTreeViewColumn *theColumn, whichTreeview whichOne);
void on_add_file_clicked();
void on_remove_file_clicked();
void on_compile();
void on_comp_okbutton_clicked(GtkButton *theButton);
void on_comp_gamebutton_clicked();
void on_project_settings();
void on_preferences();
void on_program_activate(whichProgram program);
};
|