aboutsummaryrefslogtreecommitdiff
path: root/ui.cpp
diff options
context:
space:
mode:
authors_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2009-11-07 18:51:41 +0000
committers_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2009-11-07 18:51:41 +0000
commitb4e235f9f23b492539eeeddbbd1e7a7ef1b6793e (patch)
tree5d41a2d9e84ed9ff624862024539f8411d6a7db6 /ui.cpp
parent8b4cefd3245c349cad14baaf2ba42380dcc88112 (diff)
downloadbitcoin-b4e235f9f23b492539eeeddbbd1e7a7ef1b6793e.tar.xz
ui tweaks, multiple xpm icon sizes
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@36 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'ui.cpp')
-rw-r--r--ui.cpp18
1 files changed, 12 insertions, 6 deletions
diff --git a/ui.cpp b/ui.cpp
index bfb0ad2939..a1873d5c2d 100644
--- a/ui.cpp
+++ b/ui.cpp
@@ -316,13 +316,15 @@ CMainFrame::CMainFrame(wxWindow* parent) : CMainFrameBase(parent)
fOnSetFocusAddress = false;
fRefresh = false;
m_choiceFilter->SetSelection(0);
-#ifndef __WXMSW__
- wxFont fontTmp = m_staticTextBalance->GetFont();
- fontTmp.SetPointSize(10);
+#ifdef __WXMSW__
+ SetIcon(wxICON(bitcoin));
+#else
+ SetIcon(bitcoin16_xpm);
+ wxFont fontTmp = m_staticText41->GetFont();
fontTmp.SetFamily(wxFONTFAMILY_TELETYPE);
m_staticTextBalance->SetFont(fontTmp);
m_staticTextBalance->SetSize(140, 17);
- // ampersand underlines aren't working on gtk
+ // & underlines don't work on the toolbar buttons on gtk
m_toolBar->ClearTools();
m_toolBar->AddTool(wxID_BUTTONSEND, "Send Coins", wxBitmap(send20_xpm), wxNullBitmap, wxITEM_NORMAL, wxEmptyString, wxEmptyString);
m_toolBar->AddTool(wxID_BUTTONRECEIVE, "Address Book", wxBitmap(addressbook20_xpm), wxNullBitmap, wxITEM_NORMAL, wxEmptyString, wxEmptyString);
@@ -330,7 +332,6 @@ CMainFrame::CMainFrame(wxWindow* parent) : CMainFrameBase(parent)
#endif
m_staticTextBalance->SetLabel(FormatMoney(GetBalance()) + " ");
m_listCtrl->SetFocus();
- SetIcon(wxICON(bitcoin));
ptaskbaricon = new CMyTaskBarIcon();
// Init column headers
@@ -1659,7 +1660,8 @@ CSendDialog::CSendDialog(wxWindow* parent, const wxString& strAddress) : CSendDi
//// todo: should add a display of your balance for convenience
#ifndef __WXMSW__
wxFont fontTmp = m_staticTextInstructions->GetFont();
- fontTmp.SetPointSize(fontTmp.GetPointSize()-1);
+ if (fontTmp.GetPointSize() > 9);
+ fontTmp.SetPointSize(9);
m_staticTextInstructions->SetFont(fontTmp);
SetSize(725, wxDefaultCoord);
#endif
@@ -3270,7 +3272,11 @@ void CMyTaskBarIcon::Show(bool fShow)
if (strncmp(pszPrevTip, strTooltip.c_str(), sizeof(pszPrevTip)-1) != 0)
{
strlcpy(pszPrevTip, strTooltip.c_str(), sizeof(pszPrevTip));
+#ifdef __WXMSW__
SetIcon(wxICON(bitcoin), strTooltip);
+#else
+ SetIcon(bitcoin20_xpm, strTooltip);
+#endif
}
}
else