From 96f146a2ee4c54e733d927dac98fb83d43c53081 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 2 Sep 2013 13:00:09 +0300 Subject: Improve setup input window. Changed font to help font. add separator between more than one keys. --- src/gui/setup_input.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'src/gui/setup_input.cpp') diff --git a/src/gui/setup_input.cpp b/src/gui/setup_input.cpp index ad2e3f7d9..6be11a6ba 100644 --- a/src/gui/setup_input.cpp +++ b/src/gui/setup_input.cpp @@ -125,6 +125,8 @@ Setup_Input::Setup_Input(const Widget2 *const widget) : mKeyListModel->setSize(mActionDataSize[0]); refreshKeys(); + if (gui) + mKeyList->setFont(reinterpret_cast(gui->getHelpFont())); mKeyList->addActionListener(this); mScrollArea->setHorizontalScrollPolicy(ScrollArea::SHOW_NEVER); @@ -315,8 +317,13 @@ void Setup_Input::refreshAssignedKey(const int index) } else { - mKeyListModel->setElementAt(index, strprintf("%s: %s", - gettext(key.name.c_str()), + std::string str = gettext(key.name.c_str()); + int sz = 20; + if (mainGraphics->mWidth > 800) + sz = 30; + while (str.size() < sz) + str.append(" "); + mKeyListModel->setElementAt(index, strprintf("%s: %s", str.c_str(), inputManager.getKeyStringLong(key.actionId).c_str())); } } -- cgit v1.2.3-60-g2f50