Skip to content

Commit

Permalink
poedit-1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vslavik committed Dec 23, 2000
1 parent 4af97c3 commit d1006b7
Show file tree
Hide file tree
Showing 31 changed files with 1,367 additions and 10 deletions.
8 changes: 3 additions & 5 deletions poedit/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@

*** version 1.0.2 ***

- eliminated flicker when resizing poEdit window under (Windows)

- fixed problem with localized versions of gettext (Unix)

- fixed Content-Transfer-Encoding header (was "8-bit" instead of "8bit")
Expand All @@ -12,9 +10,9 @@
- better handling of \n: strings with \n in them are now both
displayed and saved to .po file as multiline records

- saving catalog is now incremental: it only rewrites these
parts of the original catalog that were changed. Effects:
comments are preserved, file type (Unix/Dos/Mac) is preserved
- saving catalog now preserves comments

- fixed dist makefile target (Unix)



Expand Down
3 changes: 3 additions & 0 deletions poedit/TODO
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@
(ikonka "\n" v toolbaru) -- moznost vypnout konverzi
"\\n" -> "\\n\n" pri vyplnovani textctrls

- combobox for changing ref. line in references viewer

- when saving po files, write more references on one line
2 changes: 1 addition & 1 deletion poedit/configure
Original file line number Diff line number Diff line change
Expand Up @@ -1457,7 +1457,7 @@ echo "$ac_t""$CXXCPP" 1>&6


case "$USE_DEBUG" in
1) DEBUG_FLAGS="-g"
1) DEBUG_FLAGS="-g -Wall"
WX_CONFIG="wxgtkd-config"
;;
*) DEBUG_FLAGS="-O3"
Expand Down
2 changes: 1 addition & 1 deletion poedit/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ AC_PROG_CXXCPP


case "$USE_DEBUG" in
1) DEBUG_FLAGS="-g"
1) DEBUG_FLAGS="-g -Wall"
WX_CONFIG="wxgtkd-config"
;;
*) DEBUG_FLAGS="-O3"
Expand Down
7 changes: 5 additions & 2 deletions poedit/install/poedit.iss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ChangesAssociations=true
AlwaysShowComponentsList=false
SourceDir=..
DefaultDirName={pf}\poEdit
OutputDir=.

DefaultGroupName=poEdit
UninstallIconName=Uninstall poEdit
AllowNoIcons=true
Expand All @@ -20,14 +20,15 @@ DisableAppendDir=true
UninstallStyle=modern
WizardStyle=modern
LicenseFile=install\license.txt
OutputDir=.

[Files]
Source: gettext-win32\msgfmt.exe; DestDir: {app}
Source: gettext-win32\xgettext.exe; DestDir: {app}
Source: Release\poedit.exe; DestDir: {app}
Source: gettext-win32\msgmerge.exe; DestDir: {app}
Source: gettext-win32\gnu_gettext.COPYING; DestDir: {app}
Source: README; DestDir: {app}; DestName: readme.txt; Flags: isreadme
Source: README; DestDir: {app}; DestName: readme.txt
Source: docs\poedit.chm; DestDir: {app}
Source: LICENSE; DestDir: {app}
Source: ChangeLog; DestDir: {app}; DestName: ChangeLog.txt
Expand All @@ -46,8 +47,10 @@ Name: {group}\Readme; Filename: {app}\readme.txt; IconIndex: 0
Name: {group}\poEdit Help; Filename: {app}\poedit.chm; IconIndex: 0

[Run]
Filename: {app}\readme.txt; Description: View readme.txt; Flags: shellexec postinstall
Filename: {app}\ChangeLog.txt; WorkingDir: {app}; Description: View changes since previous version; Flags: postinstall unchecked shellexec
Filename: {app}\poedit.exe; WorkingDir: {app}; Description: Run poEdit now; Flags: postinstall unchecked

[_ISTool]
EnableISX=true
UseAbsolutePaths=true
2 changes: 1 addition & 1 deletion poedit/install/poedit.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Purpose: The .spec file for building poEdit RPM

# version and release
%define VERSION 1.0.1
%define VERSION 1.0.2
%define RELEASE 1


Expand Down
39 changes: 39 additions & 0 deletions poedit/src/wxxml_snapshot/include/wx/xml/xh_all.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/////////////////////////////////////////////////////////////////////////////
// Name: xh_all.h
// Purpose: includes all xh_*.h files
// Author: Vaclav Slavik
// Created: 2000/03/05
// RCS-ID: $Id$
// Copyright: (c) 2000 Vaclav Slavik
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef _WX_XH_ALL_H_
#define _WX_XH_ALL_H_


// Existing handlers:

#include "wx/xml/xh_menu.h"
#include "wx/xml/xh_panel.h"
#include "wx/xml/xh_dlg.h"
#include "wx/xml/xh_bttn.h"
#include "wx/xml/xh_chckb.h"
#include "wx/xml/xh_gauge.h"
#include "wx/xml/xh_html.h"
#include "wx/xml/xh_spin.h"
#include "wx/xml/xh_sttxt.h"
#include "wx/xml/xh_slidr.h"
#include "wx/xml/xh_radbt.h"
#include "wx/xml/xh_radbx.h"
#include "wx/xml/xh_combo.h"
#include "wx/xml/xh_chckl.h"
#include "wx/xml/xh_choic.h"
#include "wx/xml/xh_sizer.h"
#include "wx/xml/xh_stbmp.h"
#include "wx/xml/xh_notbk.h"
#include "wx/xml/xh_text.h"
#include "wx/xml/xh_listb.h"
#include "wx/xml/xh_toolb.h"

#endif // _WX_XMLRES_H_
29 changes: 29 additions & 0 deletions poedit/src/wxxml_snapshot/include/wx/xml/xh_bttn.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/////////////////////////////////////////////////////////////////////////////
// Name: xh_bttn.h
// Purpose: XML resource handler for buttons
// Author: Vaclav Slavik
// Created: 2000/03/05
// RCS-ID: $Id$
// Copyright: (c) 2000 Vaclav Slavik
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef _WX_XH_BTTN_H_
#define _WX_XH_BTTN_H_

#ifdef __GNUG__
#pragma interface "xh_bttn.h"
#endif

#include "wx/xml/xmlres.h"

class WXDLLEXPORT wxButtonXmlHandler : public wxXmlResourceHandler
{
public:
wxButtonXmlHandler() : wxXmlResourceHandler() {}
virtual wxObject *DoCreateResource();
virtual bool CanHandle(wxXmlNode *node);
};


#endif // _WX_XH_BTTN_H_
35 changes: 35 additions & 0 deletions poedit/src/wxxml_snapshot/include/wx/xml/xh_chckb.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/////////////////////////////////////////////////////////////////////////////
// Name: xh_chckb.h
// Purpose: XML resource handler for wxCheckBox
// Author: Bob Mitchell
// Created: 2000/03/21
// RCS-ID: $Id$
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef _WX_XH_CHCKB_H_
#define _WX_XH_CHCKB_H_

#ifdef __GNUG__
#pragma interface "xh_chckb.h"
#endif

#include "wx/xml/xmlres.h"
#include "wx/defs.h"

#if wxUSE_CHECKBOX

class WXDLLEXPORT wxCheckBoxXmlHandler : public wxXmlResourceHandler
{
public:
wxCheckBoxXmlHandler();
virtual wxObject *DoCreateResource();
virtual bool CanHandle(wxXmlNode *node);
};

#endif


#endif // _WX_XH_CHECKBOX_H_

33 changes: 33 additions & 0 deletions poedit/src/wxxml_snapshot/include/wx/xml/xh_chckl.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/////////////////////////////////////////////////////////////////////////////
// Name: xh_chckl.h
// Purpose: XML resource handler for wxCheckListBox
// Author: Bob Mitchell
// Created: 2000/03/21
// RCS-ID: $Id$
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef _WX_XH_CHCKL_H_
#define _WX_XH_CHCKL_H_

#ifdef __GNUG__
#pragma interface "xh_chckl.h"
#endif

#include "wx/xml/xmlres.h"

class WXDLLEXPORT wxCheckListXmlHandler : public wxXmlResourceHandler
{
public:
wxCheckListXmlHandler();
virtual wxObject *DoCreateResource();
virtual bool CanHandle(wxXmlNode *node);
private:
bool m_InsideBox;
wxArrayString strList;
};



#endif // _WX_XH_CHECKLIST_H_
32 changes: 32 additions & 0 deletions poedit/src/wxxml_snapshot/include/wx/xml/xh_choic.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/////////////////////////////////////////////////////////////////////////////
// Name: xh_choic.h
// Purpose: XML resource handler for wxChoice
// Author: Bob Mitchell
// Created: 2000/03/21
// RCS-ID: $Id$
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef _WX_XH_CHOIC_H_
#define _WX_XH_CHOIC_H_

#ifdef __GNUG__
#pragma interface "xh_choic.h"
#endif

#include "wx/xml/xmlres.h"

class WXDLLEXPORT wxChoiceXmlHandler : public wxXmlResourceHandler
{
public:
wxChoiceXmlHandler();
virtual wxObject *DoCreateResource();
virtual bool CanHandle(wxXmlNode *node);
private:
bool m_InsideBox;
wxArrayString strList;
};


#endif // _WX_XH_CHOIC_H_
35 changes: 35 additions & 0 deletions poedit/src/wxxml_snapshot/include/wx/xml/xh_combo.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/////////////////////////////////////////////////////////////////////////////
// Name: xh_combo.h
// Purpose: XML resource handler for wxComboBox
// Author: Bob Mitchell
// Created: 2000/03/21
// RCS-ID: $Id$
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef _WX_XH_COMBO_H_
#define _WX_XH_COMBO_H_

#ifdef __GNUG__
#pragma interface "xh_combo.h"
#endif

#include "wx/xml/xmlres.h"

#if wxUSE_COMBOBOX

class WXDLLEXPORT wxComboBoxXmlHandler : public wxXmlResourceHandler
{
public:
wxComboBoxXmlHandler();
virtual wxObject *DoCreateResource();
virtual bool CanHandle(wxXmlNode *node);
private:
bool m_InsideBox;
wxArrayString strList;
};

#endif

#endif // _WX_XH_COMBO_H_
29 changes: 29 additions & 0 deletions poedit/src/wxxml_snapshot/include/wx/xml/xh_dlg.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/////////////////////////////////////////////////////////////////////////////
// Name: xh_dlg.h
// Purpose: XML resource handler for dialogs
// Author: Vaclav Slavik
// Created: 2000/03/05
// RCS-ID: $Id$
// Copyright: (c) 2000 Vaclav Slavik
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef _WX_XH_DLG_H_
#define _WX_XH_DLG_H_

#ifdef __GNUG__
#pragma interface "xh_dlg.h"
#endif

#include "wx/xml/xmlres.h"

class WXDLLEXPORT wxDialogXmlHandler : public wxXmlResourceHandler
{
public:
wxDialogXmlHandler();
virtual wxObject *DoCreateResource();
virtual bool CanHandle(wxXmlNode *node);
};


#endif // _WX_XH_DLG_H_
40 changes: 40 additions & 0 deletions poedit/src/wxxml_snapshot/include/wx/xml/xh_gauge.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/////////////////////////////////////////////////////////////////////////////
// Name: xh_gauge.h
// Purpose: XML resource handler for wxGauge
// Author: Bob Mitchell
// Created: 2000/03/21
// RCS-ID: $Id$
// Copyright: (c) 2000 Bob Mitchell and Verant Interactive
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef _WX_XH_GAUGE_H_
#define _WX_XH_GAUGE_H_

#ifdef __GNUG__
#pragma interface "xh_gauge.h"
#endif

#include "wx/defs.h"

#if wxUSE_GAUGE

#include "wx/xml/xmlres.h"


class WXDLLEXPORT wxGaugeXmlHandler : public wxXmlResourceHandler
{
enum
{
wxGAUGE_DEFAULT_RANGE = 100
};

public:
wxGaugeXmlHandler();
virtual wxObject *DoCreateResource();
virtual bool CanHandle(wxXmlNode *node);
};

#endif

#endif // _WX_XH_GAUGE_H_
Loading

0 comments on commit d1006b7

Please sign in to comment.