projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac6fe98
)
add font weight and font slant enumerations
author
Dana Jansens
<danakj@orodu.net>
Sun, 4 Mar 2007 01:08:51 +0000
(
01:08
+0000)
committer
Dana Jansens
<danakj@orodu.net>
Sun, 4 Mar 2007 01:08:51 +0000
(
01:08
+0000)
render/render.h
patch
|
blob
|
history
diff --git
a/render/render.h
b/render/render.h
index da34a6a894817c61984ddbcd2bed45ccc13e3b41..c5f98381b89274ea1b5910339ac4faf85ccc45df 100644
(file)
--- a/
render/render.h
+++ b/
render/render.h
@@
-84,6
+84,20
@@
typedef enum {
RR_JUSTIFY_RIGHT
} RrJustify;
+typedef enum {
+ RR_FONTWEIGHT_LIGHT,
+ RR_FONTWEIGHT_NORMAL,
+ RR_FONTWEIGHT_SEMIBOLD,
+ RR_FONTWEIGHT_BOLD,
+ RR_FONTWEIGHT_ULTRABOLD
+} RrFontWeight;
+
+typedef enum {
+ RR_FONTSLANT_NORMAL,
+ RR_FONTSLANT_ITALIC,
+ RR_FONTSLANT_OBLIQUE
+} RrFontSlant;
+
struct _RrSurface {
RrSurfaceColorType grad;
RrReliefType relief;