aseprite/src/app/app.h

109 lines
2.5 KiB
C
Raw Normal View History

2015-02-12 23:16:25 +08:00
// Aseprite
// Copyright (C) 2001-2015 David Capello
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
#ifndef APP_APP_H_INCLUDED
#define APP_APP_H_INCLUDED
2014-03-30 06:40:17 +08:00
#pragma once
#include "base/signal.h"
#include "base/string.h"
#include "base/unique_ptr.h"
#include "doc/pixel_format.h"
#include <string>
#include <vector>
namespace doc {
class Layer;
}
namespace ui {
class GuiSystem;
}
namespace app {
class AppOptions;
class Document;
class DocumentExporter;
class INotificationDelegate;
class LegacyModules;
class LoggerModule;
class MainWindow;
class Preferences;
class RecentFiles;
namespace tools {
class ToolBox;
}
using namespace doc;
class App {
public:
App();
~App();
static App* instance() { return m_instance; }
// Returns true if Aseprite is running with GUI available.
bool isGui() const { return m_isGui; }
// Returns true if the application is running in portable mode.
bool isPortable();
// Runs the Aseprite application. In GUI mode it's the top-level
// window, in console/scripting it just runs the specified
// scripts.
void initialize(const AppOptions& options);
void run();
tools::ToolBox* getToolBox() const;
RecentFiles* getRecentFiles() const;
MainWindow* getMainWindow() const { return m_mainWindow; }
Preferences& preferences() const;
void showNotification(INotificationDelegate* del);
void updateDisplayTitleBar();
// App Signals
Signal0<void> Exit;
Signal0<void> PaletteChange;
2014-06-15 02:09:43 +08:00
Signal0<void> BrushSizeBeforeChange;
Signal0<void> BrushSizeAfterChange;
Signal0<void> BrushAngleBeforeChange;
Signal0<void> BrushAngleAfterChange;
Signal0<void> CurrentToolChange;
private:
typedef std::vector<std::string> FileList;
class CoreModules;
class Modules;
static App* m_instance;
base::UniquePtr<ui::GuiSystem> m_guiSystem;
CoreModules* m_coreModules;
Modules* m_modules;
LegacyModules* m_legacy;
bool m_isGui;
bool m_isShell;
base::UniquePtr<MainWindow> m_mainWindow;
FileList m_files;
base::UniquePtr<DocumentExporter> m_exporter;
};
void app_refresh_screen();
void app_rebuild_documents_tabs();
PixelFormat app_get_current_pixel_format();
void app_default_statusbar_message();
int app_get_color_to_clear_layer(doc::Layer* layer);
} // namespace app
#endif