forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintern.h
More file actions
46 lines (31 loc) · 814 Bytes
/
intern.h
File metadata and controls
46 lines (31 loc) · 814 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
44
45
46
// Aseprite UI Library
// Copyright (C) 2001-2013, 2015 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef UI_INTERN_H_INCLUDED
#define UI_INTERN_H_INCLUDED
#pragma once
#include "gfx/color.h"
#include "ui/base.h"
namespace she {
class Font;
}
namespace ui {
class Graphics;
class Widget;
class Window;
// intern.cpp
namespace details {
void initWidgets();
void exitWidgets();
void addWidget(Widget* widget);
void removeWidget(Widget* widget);
void resetFontAllWidgets();
void reinitThemeForAllWidgets();
} // namespace details
// theme.cpp
void drawTextBox(Graphics* g, Widget* textbox,
int* w, int* h, gfx::Color bg, gfx::Color fg);
} // namespace ui
#endif