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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
/*
* Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of the
* License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#pragma once
#include <mforms/base.h>
#include <mforms/view.h>
namespace mforms {
class Label;
enum LabelStyle
{
// normal text in normal system font
NormalStyle,
// same as above, but bold
BoldStyle,
// bold text, slightly smaller
SmallBoldStyle,
// large text
BigStyle,
// same as above, but bold
BigBoldStyle,
// smaller than normal text
SmallStyle,
// As small as possible but still readable, for titles under widgets etc.
VerySmallStyle,
// style for showing some information, can be same as normal or a bit smaller
InfoCaptionStyle,
BoldInfoCaptionStyle,
// wizard heading, in windows its blue, black elsewhere.. also bold and a bigger than normal
WizardHeadingStyle,
// description/help text to show for options, smaller than normal for fitting longer descriptions
SmallHelpTextStyle,
VeryBigStyle // 18pt
};
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#ifndef SWIG
struct LabelImplPtrs
{
bool (*create)(Label *self);
void (*set_style)(Label *self, LabelStyle style);
void (*set_text)(Label *self, const std::string &text);
void (*set_text_align)(Label *self, Alignment align);
void (*set_color)(Label *self, const std::string &color);
void (*set_wrap_text)(Label *self, bool flag);
};
#endif
#endif
/** A control with some static text. */
class MFORMS_EXPORT Label : public View
{
public:
Label(const std::string &text, bool right_align = false);
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#ifndef SWIG
Label();
#endif
#endif
/** Sets whether the text should wrap when it doesn't fit horizontally.
Note that this does not work well in GTK. */
void set_wrap_text(bool flag);
/** Sets the alignment of the text in the available space, horizontally and vertically. */
void set_text_align(Alignment align);
/** Sets the text to be displayed. */
void set_text(const std::string &text);
/** Sets the style of the text. */
void set_style(LabelStyle style);
/** Sets the text color. */
void set_color(const std::string &color);
protected:
LabelImplPtrs *_label_impl;
};
};
|