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
|
/***************************************************************************
wxutil.h - description
-------------------
begin : Thu Aug 14 2003
copyright : (C) 2003 by ARRL
author : Jon Bloom
email : jbloom@arrl.org
revision : $Id$
***************************************************************************/
#ifndef __wxutil_h
#define __wxutil_h
#ifdef HAVE_CONFIG_H
#include "sysconfig.h"
#endif
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
#include <wx/intl.h>
// String extract for translation
#define __(x) (x)
#if wxCHECK_VERSION(2, 5, 0)
#define TQ_WXCLOSEEVENT wxCloseEvent
#define TQ_WXTEXTEVENT wxCommandEvent
#define TQ_WXCOOKIE wxTreeItemIdValue
#else
#define TQ_WXCLOSEEVENT wxCommandEvent
#define TQ_WXTEXTEVENT wxEvent
#define TQ_WXCOOKIE long
#endif
wxSize getTextSize(wxWindow *win);
wxString wrapString(wxWindow *win, wxString in, int length);
wxString urlEncode(wxString& str);
int utf8_to_ucs2(const char *in, char *out, size_t buflen);
int getPasswordFromUser(wxString& result, const wxString& message, const wxString& caption, const wxString& defaultValue, wxWindow *parent);
wxString getLocalizedErrorString(void);
#endif // __wxutil_h
|