aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Text.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-12-02 20:11:58 (GMT)
committerfluxgen <fluxgen>2002-12-02 20:11:58 (GMT)
commitf75a0ee5e37b1e53abfbd747ec1f65b1a44c5411 (patch)
tree2362084c3de70d6b6de0f32bbd3c3629c61e4e33 /src/FbTk/Text.cc
parentcd3df03791ed1909b2cf7c92224e3d769941105b (diff)
downloadfluxbox-f75a0ee5e37b1e53abfbd747ec1f65b1a44c5411.zip
fluxbox-f75a0ee5e37b1e53abfbd747ec1f65b1a44c5411.tar.bz2
text utils
Diffstat (limited to 'src/FbTk/Text.cc')
-rw-r--r--src/FbTk/Text.cc88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/FbTk/Text.cc b/src/FbTk/Text.cc
new file mode 100644
index 0000000..2a7435e
--- /dev/null
+++ b/src/FbTk/Text.cc
@@ -0,0 +1,88 @@
1// Text.cc for FbTk - text utils
2// Copyright (c) 2002 Henrik Kinnunen (fluxgen at users.sourceforge.net)
3//
4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"),
6// to deal in the Software without restriction, including without limitation
7// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8// and/or sell copies of the Software, and to permit persons to whom the
9// Software is furnished to do so, subject to the following conditions:
10//
11// The above copyright notice and this permission notice shall be included in
12// all copies or substantial portions of the Software.
13//
14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE.
21
22// $Id: Text.cc,v 1.1 2002/12/02 20:11:58 fluxgen Exp $
23
24#include "Text.hh"
25
26#include "Font.hh"
27#include "Theme.hh"
28
29#include <strings.h>
30
31namespace FbTk {
32
33int doAlignment(int max_width, int bevel, FbTk::Justify justify,
34 const FbTk::Font &font, const char * const text,
35 unsigned int textlen, unsigned int &newlen) {
36
37 if (text == 0 || textlen == 0)
38 return 0;
39
40 int l = font.textWidth(text, textlen) + bevel;
41 size_t dlen = textlen;
42 int dx = bevel;
43 if (l > max_width) {
44 for (; dlen > 0; dlen--) {
45 l = font.textWidth(text, dlen) + bevel;
46 if (l<=max_width)
47 break;
48 }
49 }
50
51 newlen = dlen;
52
53 switch (justify) {
54 case FbTk::RIGHT:
55 dx = max_width - l - bevel;
56 break;
57 case FbTk::CENTER:
58 dx = (max_width - l)/2;
59 break;
60 case FbTk::LEFT:
61 break;
62 }
63
64 return dx;
65}
66
67/// specialization for Justify
68template <>
69void ThemeItem<FbTk::Justify>::setDefaultValue() {
70 m_value = LEFT;
71}
72
73template <>
74void ThemeItem<FbTk::Justify>::setFromString(const char *value) {
75 if (strcasecmp("center", value) == 0)
76 m_value = FbTk::CENTER;
77 else if (strcasecmp("right", value) == 0)
78 m_value = FbTk::RIGHT;
79 else // default
80 setDefaultValue();
81}
82
83// do nothing
84template <>
85void ThemeItem<FbTk::Justify>::load() {
86}
87
88}; // end namespace FbTk