forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsheet.h
More file actions
43 lines (31 loc) · 769 Bytes
/
sheet.h
File metadata and controls
43 lines (31 loc) · 769 Bytes
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
// Aseprite CSS Library
// Copyright (C) 2013 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef CSS_SHEET_H_INCLUDED
#define CSS_SHEET_H_INCLUDED
#pragma once
#include "css/rule.h"
#include "css/style.h"
#include "css/value.h"
#include <map>
#include <string>
namespace css {
class CompoundStyle;
class Query;
class StatefulStyle;
class Sheet {
public:
Sheet();
void addRule(Rule* rule);
void addStyle(Style* style);
const Style* getStyle(const std::string& name);
Query query(const StatefulStyle& stateful);
CompoundStyle compoundStyle(const std::string& name);
private:
Rules m_rules;
Styles m_styles;
};
} // namespace css
#endif