forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocument.h
More file actions
63 lines (46 loc) · 1.43 KB
/
document.h
File metadata and controls
63 lines (46 loc) · 1.43 KB
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
// Aseprite Document Library
// Copyright (c) 2001-2016 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef DOC_DOCUMENT_H_INCLUDED
#define DOC_DOCUMENT_H_INCLUDED
#pragma once
#include <string>
#include "base/unique_ptr.h"
#include "doc/document_observer.h"
#include "doc/object.h"
#include "doc/sprites.h"
#include "obs/observable.h"
namespace doc {
class Context;
class Document : public Object
, public obs::observable<DocumentObserver> {
public:
Document();
~Document();
Context* context() const { return m_ctx; }
void setContext(Context* ctx);
const Sprites& sprites() const { return m_sprites; }
Sprites& sprites() { return m_sprites; }
const Sprite* sprite() const { return m_sprites.empty() ? NULL: m_sprites.front(); }
Sprite* sprite() { return m_sprites.empty() ? NULL: m_sprites.front(); }
int width() const;
int height() const;
ColorMode colorMode() const;
std::string name() const;
const std::string& filename() const { return m_filename; }
void setFilename(const std::string& filename);
void close();
protected:
virtual void onContextChanged();
private:
void removeFromContext();
// Document's file name. From where it was loaded, where it is
// saved.
std::string m_filename;
Sprites m_sprites;
Context* m_ctx;
};
} // namespace doc
#endif