summaryrefslogtreecommitdiff
path: root/src/console/ConsoleView.cpp
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-05-15 17:13:17 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-05-15 17:13:17 (GMT)
commit136675b56a8a1862afb41ccee5c14e93e483b964 (patch)
tree8f679477c5e1c0984a5cb9c169e339c1ca0d6e0c /src/console/ConsoleView.cpp
parent45563e97e813cfd21724ad1111e5de3e04679e1a (diff)
downloadpowder-136675b56a8a1862afb41ccee5c14e93e483b964.zip
powder-136675b56a8a1862afb41ccee5c14e93e483b964.tar.gz
Move style into Component
Diffstat (limited to 'src/console/ConsoleView.cpp')
-rw-r--r--src/console/ConsoleView.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/console/ConsoleView.cpp b/src/console/ConsoleView.cpp
index cda871e..504b28a 100644
--- a/src/console/ConsoleView.cpp
+++ b/src/console/ConsoleView.cpp
@@ -23,7 +23,8 @@ ConsoleView::ConsoleView():
}
};
commandField = new ui::Textbox(ui::Point(0, Size.Y-16), ui::Point(Size.X, 16), "");
- commandField->SetAlignment(AlignLeft, AlignBottom);
+ commandField->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
+ commandField->Appearance.VerticalAlign = ui::Appearance::AlignBottom;
commandField->SetActionCallback(new CommandHighlighter(this));
AddComponent(commandField);
FocusComponent(commandField);
@@ -67,11 +68,13 @@ void ConsoleView::NotifyPreviousCommandsChanged(ConsoleModel * sender)
if(currentY <= 0)
break;
ui::Label * tempLabel = new ui::Label(ui::Point(Size.X/2, currentY), ui::Point(Size.X/2, 16), commands[i].ReturnValue);
- tempLabel->SetAlignment(AlignLeft, AlignMiddle);
+ tempLabel->Appearance.VerticalAlign = ui::Appearance::AlignMiddle;
+ tempLabel->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
commandList.push_back(tempLabel);
AddComponent(tempLabel);
tempLabel = new ui::Label(ui::Point(0, currentY), ui::Point(Size.X/2, 16), commands[i].Command);
- tempLabel->SetAlignment(AlignLeft, AlignMiddle);
+ tempLabel->Appearance.VerticalAlign = ui::Appearance::AlignMiddle;
+ tempLabel->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
commandList.push_back(tempLabel);
AddComponent(tempLabel);
currentY-=16;