本文整理汇总了C++中TextArea::setHorizontalAlignment方法的典型用法代码示例。如果您正苦于以下问题:C++ TextArea::setHorizontalAlignment方法的具体用法?C++ TextArea::setHorizontalAlignment怎么用?C++ TextArea::setHorizontalAlignment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TextArea
的用法示例。
在下文中一共展示了TextArea::setHorizontalAlignment方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Container
Container *Intro::setUpExampleUI()
{
// A small example UI, illustrating some of the core controls.
// The UI is arranged using a Container with a stack layout.
Container *exampleUI = new Container();
StackLayout *exampleUILayout = new StackLayout();
exampleUI->setLayout(exampleUILayout);
// A TextArea with text input functionality
TextArea *exampleTextArea = new TextArea();
exampleTextArea->textStyle()->setBase(SystemDefaults::TextStyles::bodyText());
exampleTextArea->setHorizontalAlignment(HorizontalAlignment::Fill);
// An example of a Slider
Slider *exampleSlider = new Slider();
exampleSlider->setValue(0.5f);
exampleSlider->setHorizontalAlignment(HorizontalAlignment::Left);
exampleSlider->setVerticalAlignment(VerticalAlignment::Bottom);
// A ToggleButton
ToggleButton *exampleToggle = new ToggleButton();
exampleToggle->setHorizontalAlignment(HorizontalAlignment::Right);
// A regular Button
Button *exampleButton = new Button();
exampleButton->setText("Button");
// Container for the buttons
Container *buttonContainer = new Container();
DockLayout *buttonContainerLayout = new DockLayout();
buttonContainer->setLayout(buttonContainerLayout);
buttonContainer->setHorizontalAlignment(HorizontalAlignment::Fill);
// Adding the buttons to the container.
buttonContainer->add(exampleToggle);
buttonContainer->add(exampleButton);
// Add the Controls to the Container, the layouting is done using
// layout properties and margins of each control (see code above).
exampleUI->add(exampleTextArea);
exampleUI->add(exampleSlider);
exampleUI->add(buttonContainer);
return exampleUI;
}
示例2: CustomControl
InputRecipe::InputRecipe(Container *parent) :
CustomControl(parent)
{
bool connectResult;
Q_UNUSED(connectResult);
ScrollView *scrollView = new ScrollView();
ScrollViewProperties* scrollViewProp = scrollView->scrollViewProperties();
scrollViewProp->setScrollMode(ScrollMode::Vertical);
Container *recipeContainer = Container::create().left(80).right(80);
// Label used to display the entered text
mInputLabel = new Label();
mInputLabel->setMultiline(true);
mInputLabel->setText((const QString) " ");
mInputLabel->setHorizontalAlignment(HorizontalAlignment::Fill);
mInputLabel->setBottomMargin(50.0);
mInputLabel->textStyle()->setBase(SystemDefaults::TextStyles::bodyText());
// A multi line text input
TextArea *textArea = new TextArea();
textArea->setHintText("Enter text into multi-line TextArea");
textArea->setPreferredHeight(140);
textArea->setBottomMargin(50.0);
textArea->textStyle()->setBase(SystemDefaults::TextStyles::bodyText());
textArea->setHorizontalAlignment(HorizontalAlignment::Fill);
// Connect the TextArea textChanging signal to the onTextChanging function to update the text.
connectResult = connect(textArea, SIGNAL(textChanging(const QString &)), this,
SLOT(onTextChanging(const QString &)));
Q_ASSERT(connectResult);
// A single line input field with a clear functionality
TextField *textField = new TextField();
textField->setHintText("Enter text into a single line TextField");
textField->setHorizontalAlignment(HorizontalAlignment::Fill);
textField->setBottomMargin(50.0);
// Connect the TextField textChanging signal to the onTextChanging function to update the text.
connectResult = connect(textField, SIGNAL(textChanging(const QString &)), this,
SLOT(onTextChanging(const QString &)));
Q_ASSERT(connectResult);
// A disabled text field
TextField *disabledTextField = new TextField();
disabledTextField->setHintText("This is a disabled text field");
disabledTextField->setEnabled(false);
disabledTextField->setHorizontalAlignment(HorizontalAlignment::Fill);
disabledTextField->setBottomMargin(50.0);
// Add the controls to the recipe Container and ScrollView and set it as the CustomControl root.
scrollView->setContent(recipeContainer);
recipeContainer->add(mInputLabel);
recipeContainer->add(textField);
recipeContainer->add(disabledTextField);
recipeContainer->add(textArea);
//recipeContainer->add(inputContainer);
setRoot(scrollView);
}