blob: 2504813287980563a712d0d77d276b5b630f0d52 (
plain)
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
|
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) *
// **************************************************************************
//
#ifndef UTIL_H_INCLUDED
#define UTIL_H_INCLUDED
#include "../shared/zstring.h"
#include <wx/string.h>
#include <wx/longlong.h>
#include "../shared/globalFunctions.h"
class wxComboBox;
class wxTextCtrl;
class wxDirPickerCtrl;
class wxScrolledWindow;
namespace FreeFileSync
{
wxString formatFilesizeToShortString(const wxLongLong& filesize);
wxString formatFilesizeToShortString(const wxULongLong& filesize);
wxString formatFilesizeToShortString(double filesize);
wxString formatPercentage(const wxLongLong& dividend, const wxLongLong& divisor);
template <class NumberType>
wxString numberToStringSep(NumberType number); //convert number to wxString including thousands separator
void setDirectoryName(const wxString& dirname, wxTextCtrl* txtCtrl, wxDirPickerCtrl* dirPicker);
void setDirectoryName(const wxString& dirname, wxComboBox* txtCtrl, wxDirPickerCtrl* dirPicker);
void scrollToBottom(wxScrolledWindow* scrWindow);
wxString utcTimeToLocalString(const wxLongLong& utcTime); //throw std::runtime_error
}
//--------------- inline impelementation -------------------------------------------
//helper function! not to be used directly
namespace FreeFileSync_Impl
{
wxString includeNumberSeparator(const wxString& number);
}
namespace FreeFileSync
{
//wxULongLongNative doesn't support operator<<(std::ostream&, wxULongLongNative)
template <>
inline
wxString numberToStringSep(wxULongLongNative number)
{
return FreeFileSync_Impl::includeNumberSeparator(number.ToString());
}
template <class NumberType>
inline
wxString numberToStringSep(NumberType number)
{
return FreeFileSync_Impl::includeNumberSeparator(globalFunctions::numberToString(number));
}
}
#endif // UTIL_H_INCLUDED
|