blob: cc721ac1ddf6aef234a1aefbaaf09bc7843f2549 (
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
|
// **************************************************************************
// * 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>
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);
wxString numberToWxString(size_t number, bool includeNumberSep); //convert number to wxString
wxString numberToWxString(int number, bool includeNumberSep); //convert number to wxString
wxString numberToWxString(const wxULongLong& number, bool includeNumberSep); //convert number to wxString
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
}
#endif // UTIL_H_INCLUDED
|