Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
a55ef8df
Commit
a55ef8df
authored
Apr 16, 2008
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update and use annotate_dialog.pjd to create and maintain annotate dialog
parent
dd149e22
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
788 additions
and
455 deletions
+788
-455
change_log.txt
change_log.txt
+1
-0
annotate.cpp
eeschema/annotate.cpp
+0
-7
annotate_dialog.cpp
eeschema/annotate_dialog.cpp
+184
-177
annotate_dialog.h
eeschema/annotate_dialog.h
+68
-60
annotate_dialog.pjd
eeschema/annotate_dialog.pjd
+435
-113
kicad.mo
internat/fr/kicad.mo
+0
-0
kicad.po
internat/fr/kicad.po
+100
-98
No files found.
change_log.txt
View file @
a55ef8df
...
@@ -10,6 +10,7 @@ email address.
...
@@ -10,6 +10,7 @@ email address.
+eeschema
+eeschema
In complex hierarchies, multiples parts per packages now should work,
In complex hierarchies, multiples parts per packages now should work,
without restrictions
without restrictions
Update and use annotate_dialog.pjd to create annotate dialog
2008-Apr-15 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
2008-Apr-15 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
...
...
eeschema/annotate.cpp
View file @
a55ef8df
...
@@ -440,9 +440,6 @@ void BreakReference( CmpListStruct* BaseListeCmp, int NbOfCmp )
...
@@ -440,9 +440,6 @@ void BreakReference( CmpListStruct* BaseListeCmp, int NbOfCmp )
}
}
}
}
wxLogDebug
(
wxT
(
"BreakReference(): %s number found: %d
\n
"
),
BaseListeCmp
[
ii
].
m_TextRef
,
BaseListeCmp
[
ii
].
m_NumRef
);
}
}
}
}
...
@@ -667,7 +664,6 @@ int CheckAnnotate( WinEDA_SchematicFrame* frame, bool oneSheetOnly )
...
@@ -667,7 +664,6 @@ int CheckAnnotate( WinEDA_SchematicFrame* frame, bool oneSheetOnly )
if
(
NbOfCmp
==
0
)
if
(
NbOfCmp
==
0
)
{
{
wxBell
();
return
0
;
return
0
;
}
}
...
@@ -675,7 +671,6 @@ int CheckAnnotate( WinEDA_SchematicFrame* frame, bool oneSheetOnly )
...
@@ -675,7 +671,6 @@ int CheckAnnotate( WinEDA_SchematicFrame* frame, bool oneSheetOnly )
/* Second pass : create the list of components */
/* Second pass : create the list of components */
ListeCmp
=
AllocateCmpListStrct
(
NbOfCmp
);
ListeCmp
=
AllocateCmpListStrct
(
NbOfCmp
);
printf
(
"CheckAnnotate() listing all components:
\n
"
);
if
(
!
oneSheetOnly
)
if
(
!
oneSheetOnly
)
{
{
ii
=
0
;
ii
=
0
;
...
@@ -687,8 +682,6 @@ int CheckAnnotate( WinEDA_SchematicFrame* frame, bool oneSheetOnly )
...
@@ -687,8 +682,6 @@ int CheckAnnotate( WinEDA_SchematicFrame* frame, bool oneSheetOnly )
else
else
ListeComposants
(
ListeCmp
,
frame
->
GetSheet
()
);
ListeComposants
(
ListeCmp
,
frame
->
GetSheet
()
);
printf
(
"CheckAnnotate() done:
\n
"
);
qsort
(
ListeCmp
,
NbOfCmp
,
sizeof
(
CmpListStruct
),
AnnotateByValue
);
qsort
(
ListeCmp
,
NbOfCmp
,
sizeof
(
CmpListStruct
),
AnnotateByValue
);
/* Break full components reference in name (prefix) and number: example:
/* Break full components reference in name (prefix) and number: example:
...
...
eeschema/annotate_dialog.cpp
View file @
a55ef8df
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Name: annotate_dialog.cpp
// Name: annotate_dialog.cpp
// Purpose:
// Purpose:
// Author: jean-pierre Charras
// Author: jean-pierre Charras
// Modified by: Wayne Stambaugh
// Modified by:
//
// Created: 16/04/2008 17:50:59
// Created: 05/02/2006 12:31:28
// Modified 02/21/2008 13:47:10
// RCS-ID:
// RCS-ID:
// Copyright: License GNU
// Copyright: License GNU
// Licence:
// Licence:
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Generated by DialogBlocks (unregistered), 16/04/2008 17:50:59
#if defined
(__GNUG__) && !defined
(NO_GCC_PRAGMA)
#if defined
(__GNUG__) && !defined
(NO_GCC_PRAGMA)
#pragma implementation "annotate_dialog.h"
#pragma implementation "annotate_dialog.h"
#endif
#endif
...
@@ -28,6 +26,9 @@
...
@@ -28,6 +26,9 @@
#include "wx/wx.h"
#include "wx/wx.h"
#endif
#endif
////@begin includes
////@end includes
#include "fctsys.h"
#include "fctsys.h"
#include "common.h"
#include "common.h"
#include "program.h"
#include "program.h"
...
@@ -40,6 +41,9 @@ extern void AnnotateComponents( WinEDA_SchematicFrame* parent,
...
@@ -40,6 +41,9 @@ extern void AnnotateComponents( WinEDA_SchematicFrame* parent,
bool
sortByPosition
,
bool
sortByPosition
,
bool
resetAnnotation
);
bool
resetAnnotation
);
////@begin XPM images
////@end XPM images
/*!
/*!
* WinEDA_AnnotateFrame type definition
* WinEDA_AnnotateFrame type definition
...
@@ -47,38 +51,39 @@ extern void AnnotateComponents( WinEDA_SchematicFrame* parent,
...
@@ -47,38 +51,39 @@ extern void AnnotateComponents( WinEDA_SchematicFrame* parent,
IMPLEMENT_DYNAMIC_CLASS
(
WinEDA_AnnotateFrame
,
wxDialog
)
IMPLEMENT_DYNAMIC_CLASS
(
WinEDA_AnnotateFrame
,
wxDialog
)
/*!
/*!
* WinEDA_AnnotateFrame event table definition
* WinEDA_AnnotateFrame event table definition
*/
*/
BEGIN_EVENT_TABLE
(
WinEDA_AnnotateFrame
,
wxDialog
)
BEGIN_EVENT_TABLE
(
WinEDA_AnnotateFrame
,
wxDialog
)
EVT_BUTTON
(
ID_CLEAR_ANNOTATION
,
WinEDA_AnnotateFrame
::
OnClearAnnotation
)
EVT_BUTTON
(
wxID_APPLY
,
WinEDA_AnnotateFrame
::
OnApply
)
////@begin WinEDA_AnnotateFrame event table entries
EVT_BUTTON
(
wxID_CANCEL
,
WinEDA_AnnotateFrame
::
OnCancel
)
EVT_BUTTON
(
wxID_CANCEL
,
WinEDA_AnnotateFrame
::
OnCancelClick
)
EVT_BUTTON
(
ID_CLEAR_ANNOTATION_CMP
,
WinEDA_AnnotateFrame
::
OnClearAnnotationCmpClick
)
EVT_BUTTON
(
wxID_APPLY
,
WinEDA_AnnotateFrame
::
OnApplyClick
)
////@end WinEDA_AnnotateFrame event table entries
END_EVENT_TABLE
()
END_EVENT_TABLE
()
/*!
/*!
* WinEDA_AnnotateFrame constructors
* WinEDA_AnnotateFrame constructors
*/
*/
WinEDA_AnnotateFrame
::
WinEDA_AnnotateFrame
()
WinEDA_AnnotateFrame
::
WinEDA_AnnotateFrame
()
{
{
m_rbEntireSchematic
=
NULL
;
Init
();
m_cbResetAnnotation
=
NULL
;
m_rbSortByPosition
=
NULL
;
m_btnClear
=
NULL
;
}
}
WinEDA_AnnotateFrame
::
WinEDA_AnnotateFrame
(
WinEDA_SchematicFrame
*
parent
,
wxWindowID
id
,
const
wxString
&
caption
,
const
wxPoint
&
pos
,
const
wxSize
&
size
,
long
style
)
WinEDA_AnnotateFrame
::
WinEDA_AnnotateFrame
(
WinEDA_SchematicFrame
*
parent
,
wxWindowID
id
,
const
wxString
&
caption
,
const
wxPoint
&
pos
,
const
wxSize
&
size
,
long
style
)
{
{
m_Parent
=
parent
;
m_Parent
=
parent
;
Create
(
parent
,
id
,
caption
,
pos
,
size
,
style
);
Init
();
Create
(
parent
,
id
,
caption
,
pos
,
size
,
style
);
}
}
...
@@ -86,198 +91,132 @@ WinEDA_AnnotateFrame::WinEDA_AnnotateFrame( WinEDA_SchematicFrame* parent,
...
@@ -86,198 +91,132 @@ WinEDA_AnnotateFrame::WinEDA_AnnotateFrame( WinEDA_SchematicFrame* parent,
* WinEDA_AnnotateFrame creator
* WinEDA_AnnotateFrame creator
*/
*/
bool
WinEDA_AnnotateFrame
::
Create
(
wxWindow
*
parent
,
bool
WinEDA_AnnotateFrame
::
Create
(
wxWindow
*
parent
,
wxWindowID
id
,
const
wxString
&
caption
,
const
wxPoint
&
pos
,
const
wxSize
&
size
,
long
style
)
wxWindowID
id
,
const
wxString
&
caption
,
const
wxPoint
&
pos
,
const
wxSize
&
size
,
long
style
)
{
{
SetExtraStyle
(
wxWS_EX_BLOCK_EVENTS
);
////@begin WinEDA_AnnotateFrame creation
SetExtraStyle
(
wxWS_EX_BLOCK_EVENTS
);
wxDialog
::
Create
(
parent
,
id
,
caption
,
pos
,
size
,
style
);
wxDialog
::
Create
(
parent
,
id
,
caption
,
pos
,
size
,
style
);
CreateControls
();
CreateControls
();
if
(
GetSizer
()
)
if
(
GetSizer
()
)
{
{
GetSizer
()
->
SetSizeHints
(
this
);
GetSizer
()
->
SetSizeHints
(
this
);
}
}
Centre
();
Centre
();
////@end WinEDA_AnnotateFrame creation
return
true
;
return
true
;
}
}
/*!
/*!
*
Control creation for WinEDA_AnnotateFrame
*
WinEDA_AnnotateFrame destructor
*/
*/
void
WinEDA_AnnotateFrame
::
CreateControls
()
WinEDA_AnnotateFrame
::~
WinEDA_AnnotateFrame
()
{
{
wxFont
fontBold
=
this
->
GetFont
();
////@begin WinEDA_AnnotateFrame destruction
fontBold
.
SetWeight
(
wxFONTWEIGHT_BOLD
);
////@end WinEDA_AnnotateFrame destruction
wxBoxSizer
*
sizerTop
=
new
wxBoxSizer
(
wxVERTICAL
);
/* Sizer flags for setting up the spacing of the controls in the dialog
* box. These eventually should be moved to a file with a header in
* the common directory so all of the dialogs share the same layout
* spacing */
/* Spacing for grouping labels in a dialog box. */
wxSizerFlags
flagsLabelSpacing
(
0
);
flagsLabelSpacing
.
Align
(
wxALIGN_TOP
|
wxALIGN_LEFT
);
flagsLabelSpacing
.
Border
(
wxLEFT
|
wxTOP
,
6
);
/* Spacing for grouping radio buttons inside the grouping sizer. */
wxSizerFlags
flagsRadioButtonSpacing
(
0
);
flagsRadioButtonSpacing
.
Align
(
wxALIGN_LEFT
);
flagsRadioButtonSpacing
.
Border
(
wxTOP
|
wxLEFT
|
wxRIGHT
,
6
);
/* Spacing for the radio button sizer inside the group sizer. */
wxSizerFlags
flagsRadioButtonSizerSpacing
(
0
);
flagsRadioButtonSizerSpacing
.
Align
(
wxALIGN_TOP
|
wxALIGN_LEFT
);
flagsRadioButtonSizerSpacing
.
Border
(
wxLEFT
,
20
);
/* Spacing for the vertical group sizers. */
wxSizerFlags
flagsGroupSizerSpacing
(
1
);
flagsGroupSizerSpacing
.
Align
(
wxALIGN_TOP
|
wxALIGN_LEFT
);
flagsGroupSizerSpacing
.
Border
(
wxTOP
|
wxLEFT
|
wxRIGHT
,
12
);
/* Spacing for dialog button sizer. */
wxSizerFlags
flagsDialogButtonSizerSpacing
(
0
);
flagsDialogButtonSizerSpacing
.
Border
(
wxALL
,
12
);
/* Spacing for the dialog buttons. */
wxSizerFlags
flagsDialogButtonSpacing
(
0
);
flagsDialogButtonSpacing
.
Border
(
wxLEFT
|
wxRIGHT
,
3
);
/* Annotate scope sizers, label, and radio buttons. */
wxBoxSizer
*
sizerAnnotate
=
new
wxBoxSizer
(
wxVERTICAL
);
wxStaticText
*
labelAnnotate
=
new
wxStaticText
(
this
,
-
1
,
_
(
"Scope"
)
);
labelAnnotate
->
SetFont
(
fontBold
);
sizerAnnotate
->
Add
(
labelAnnotate
,
flagsLabelSpacing
);
wxBoxSizer
*
sizerAnnotateItems
=
new
wxBoxSizer
(
wxVERTICAL
);
m_rbEntireSchematic
=
new
wxRadioButton
(
this
,
ID_ENTIRE_SCHEMATIC
,
_
(
"Annotate the &entire schematic"
),
wxDefaultPosition
,
wxDefaultSize
,
wxRB_GROUP
);
wxRadioButton
*
rbCurrentPage
=
new
wxRadioButton
(
this
,
ID_CURRENT_PAGE
,
_
(
"Annotate the current &page only"
)
);
m_rbEntireSchematic
->
SetValue
(
true
);
m_cbResetAnnotation
=
new
wxCheckBox
(
this
,
ID_RESET_ANNOTATION
,
_
(
"&Reset existing annotation"
)
);
sizerAnnotateItems
->
Add
(
m_rbEntireSchematic
,
flagsRadioButtonSpacing
);
sizerAnnotateItems
->
Add
(
rbCurrentPage
,
flagsRadioButtonSpacing
);
sizerAnnotateItems
->
Add
(
m_cbResetAnnotation
,
flagsRadioButtonSpacing
);
sizerAnnotate
->
Add
(
sizerAnnotateItems
,
flagsRadioButtonSizerSpacing
);
sizerTop
->
Add
(
sizerAnnotate
,
flagsGroupSizerSpacing
);
/* This is an ugly hack to make sure the focus is set correctly so the
* escape key closes the dialog without requiring one of the controls
* to be activated by the user first. This problem only occurs on the
* GTK version of wxWidgets */
#ifdef __WXGTK__
m_rbEntireSchematic
->
SetFocus
(
);
#endif
/* Annotation sort order sizers, label, and radio buttons. */
wxBoxSizer
*
sizerSort
=
new
wxBoxSizer
(
wxVERTICAL
);
wxStaticText
*
labelSort
=
new
wxStaticText
(
this
,
wxID_ANY
,
_
(
"Order"
)
);
labelSort
->
SetFont
(
fontBold
);
sizerSort
->
Add
(
labelSort
,
flagsLabelSpacing
);
wxBoxSizer
*
sizerSortItems
=
new
wxBoxSizer
(
wxVERTICAL
);
m_rbSortByPosition
=
new
wxRadioButton
(
this
,
ID_SORT_BY_POSITION
,
_
(
"Sort components by p&osition"
),
wxDefaultPosition
,
wxDefaultSize
,
wxRB_GROUP
);
wxRadioButton
*
rbSortByValue
=
new
wxRadioButton
(
this
,
ID_SORT_BY_VALUE
,
_
(
"Sort components by &value"
)
);
sizerSortItems
->
Add
(
m_rbSortByPosition
,
flagsRadioButtonSpacing
);
sizerSortItems
->
Add
(
rbSortByValue
,
flagsRadioButtonSpacing
);
sizerSort
->
Add
(
sizerSortItems
,
flagsRadioButtonSizerSpacing
);
sizerTop
->
Add
(
sizerSort
,
flagsGroupSizerSpacing
);
/* Standard dialog buttons and sizer. */
wxBoxSizer
*
sizerDialogButtons
=
new
wxBoxSizer
(
wxHORIZONTAL
);
wxButton
*
btnClose
=
new
wxButton
(
this
,
wxID_CANCEL
,
_
(
"Close"
)
);
/* TODO: Check if there is any existing annotation and enable/disable
* the clear button accordingly. Probably should also enable/
* disable new components radio button if all of the components
* are already annotated. Some low level work on the DrawSheetPath
* class will need to be done to accomadate this.
*/
m_btnClear
=
new
wxButton
(
this
,
ID_CLEAR_ANNOTATION
,
_
(
"Clear Annotation"
)
);
wxButton
*
btnApply
=
new
wxButton
(
this
,
wxID_APPLY
,
_
(
"Annotation"
)
);
sizerDialogButtons
->
Add
(
btnClose
,
flagsDialogButtonSpacing
);
sizerDialogButtons
->
Add
(
new
wxBoxSizer
(
wxHORIZONTAL
),
wxSizerFlags
(
1
).
Expand
(
)
);
sizerDialogButtons
->
Add
(
m_btnClear
,
flagsDialogButtonSpacing
);
sizerDialogButtons
->
Add
(
btnApply
,
flagsDialogButtonSpacing
);
sizerTop
->
Add
(
sizerDialogButtons
,
flagsDialogButtonSizerSpacing
);
SetSizer
(
sizerTop
);
}
}
/*!
/*!
*
Should we show tooltips?
*
Member initialisation
*/
*/
bool
WinEDA_AnnotateFrame
::
ShowToolTips
()
void
WinEDA_AnnotateFrame
::
Init
()
{
{
return
true
;
////@begin WinEDA_AnnotateFrame member initialisation
m_rbEntireSchematic
=
NULL
;
m_cbResetAnnotation
=
NULL
;
m_rbSortByPosition
=
NULL
;
rbSortByValue
=
NULL
;
sizerDialogButtons
=
NULL
;
m_btnClose
=
NULL
;
m_btnClear
=
NULL
;
m_btnApply
=
NULL
;
////@end WinEDA_AnnotateFrame member initialisation
}
}
/*!
/*!
*
Get bitmap resources
*
Control creation for WinEDA_AnnotateFrame
*/
*/
wxBitmap
WinEDA_AnnotateFrame
::
GetBitmapResource
(
const
wxString
&
name
)
void
WinEDA_AnnotateFrame
::
CreateControls
(
)
{
{
// Bitmap retrieval
////@begin WinEDA_AnnotateFrame content construction
wxUnusedVar
(
name
);
// Generated by DialogBlocks, 16/04/2008 20:16:13 (unregistered)
return
wxNullBitmap
;
}
WinEDA_AnnotateFrame
*
itemDialog1
=
this
;
/*!
wxBoxSizer
*
itemBoxSizer2
=
new
wxBoxSizer
(
wxVERTICAL
);
* Get icon resources
itemDialog1
->
SetSizer
(
itemBoxSizer2
);
*/
wxIcon
WinEDA_AnnotateFrame
::
GetIconResource
(
const
wxString
&
name
)
wxBoxSizer
*
itemBoxSizer3
=
new
wxBoxSizer
(
wxVERTICAL
);
{
itemBoxSizer2
->
Add
(
itemBoxSizer3
,
0
,
wxGROW
|
wxRIGHT
|
wxTOP
|
wxBOTTOM
,
5
);
// Icon retrieval
wxUnusedVar
(
name
);
return
wxNullIcon
;
}
void
WinEDA_AnnotateFrame
::
OnClearAnnotation
(
wxCommandEvent
&
event
)
wxStaticText
*
itemStaticText4
=
new
wxStaticText
(
itemDialog1
,
wxID_STATIC
,
_
(
"Scope"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
{
itemStaticText4
->
SetForegroundColour
(
wxColour
(
0
,
128
,
64
));
int
response
;
itemStaticText4
->
SetFont
(
wxFont
(
8
,
wxSWISS
,
wxNORMAL
,
wxBOLD
,
false
,
wxT
(
"Tahoma"
)));
itemBoxSizer3
->
Add
(
itemStaticText4
,
0
,
wxALIGN_LEFT
|
wxALL
,
5
);
wxString
message
=
_
(
"Clear the existing annotation for "
);
wxBoxSizer
*
itemBoxSizer5
=
new
wxBoxSizer
(
wxVERTICAL
);
if
(
GetLevel
()
)
itemBoxSizer3
->
Add
(
itemBoxSizer5
,
0
,
wxGROW
|
wxLEFT
,
25
);
message
+=
_
(
"the entire schematic?"
);
else
message
+=
_
(
"the current sheet?"
);
message
+=
_
(
"
\n\n
This operation will clear the existing annotation "
\
m_rbEntireSchematic
=
new
wxRadioButton
(
itemDialog1
,
ID_ENTIRE_SCHEMATIC
,
_
(
"Annotate the &entire schematic"
),
wxDefaultPosition
,
wxDefaultSize
,
wxRB_GROUP
);
"and cannot be undone."
);
m_rbEntireSchematic
->
SetValue
(
true
);
response
=
wxMessageBox
(
message
,
wxT
(
""
),
itemBoxSizer5
->
Add
(
m_rbEntireSchematic
,
0
,
wxGROW
|
wxALL
,
5
);
wxICON_EXCLAMATION
|
wxOK
|
wxCANCEL
);
if
(
response
==
wxCANCEL
)
wxRadioButton
*
itemRadioButton7
=
new
wxRadioButton
(
itemDialog1
,
ID_CURRENT_PAGE
,
_
(
"Annotate the current &page only"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
return
;
itemRadioButton7
->
SetValue
(
false
);
DeleteAnnotation
(
m_Parent
,
GetLevel
()
);
itemBoxSizer5
->
Add
(
itemRadioButton7
,
0
,
wxGROW
|
wxALL
,
5
);
m_btnClear
->
Enable
(
false
);
m_cbResetAnnotation
=
new
wxCheckBox
(
itemDialog1
,
ID_RESET_ANNOTATION
,
_
(
"&Reset existing annotation"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_cbResetAnnotation
->
SetValue
(
false
);
m_cbResetAnnotation
->
SetForegroundColour
(
wxColour
(
217
,
38
,
52
));
itemBoxSizer5
->
Add
(
m_cbResetAnnotation
,
0
,
wxGROW
|
wxALL
,
5
);
wxStaticText
*
itemStaticText9
=
new
wxStaticText
(
itemDialog1
,
wxID_STATIC
,
_
(
"Order"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
itemStaticText9
->
SetForegroundColour
(
wxColour
(
125
,
2
,
12
));
itemStaticText9
->
SetFont
(
wxFont
(
8
,
wxSWISS
,
wxNORMAL
,
wxBOLD
,
false
,
wxT
(
"Tahoma"
)));
itemBoxSizer3
->
Add
(
itemStaticText9
,
0
,
wxALIGN_LEFT
|
wxALL
,
5
);
wxBoxSizer
*
itemBoxSizer10
=
new
wxBoxSizer
(
wxVERTICAL
);
itemBoxSizer3
->
Add
(
itemBoxSizer10
,
0
,
wxGROW
|
wxLEFT
,
25
);
m_rbSortByPosition
=
new
wxRadioButton
(
itemDialog1
,
ID_SORT_BY_POSITION
,
_
(
"Sort Components by &Y Position"
),
wxDefaultPosition
,
wxDefaultSize
,
wxRB_GROUP
);
m_rbSortByPosition
->
SetValue
(
true
);
itemBoxSizer10
->
Add
(
m_rbSortByPosition
,
0
,
wxGROW
|
wxALL
,
5
);
rbSortByValue
=
new
wxRadioButton
(
itemDialog1
,
ID_SORT_BY_VALUE
,
_
(
"Sort Components by &Value"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
rbSortByValue
->
SetValue
(
false
);
itemBoxSizer10
->
Add
(
rbSortByValue
,
0
,
wxGROW
|
wxALL
,
5
);
sizerDialogButtons
=
new
wxBoxSizer
(
wxHORIZONTAL
);
itemBoxSizer2
->
Add
(
sizerDialogButtons
,
0
,
wxALIGN_CENTER_HORIZONTAL
|
wxALL
,
5
);
m_btnClose
=
new
wxButton
(
itemDialog1
,
wxID_CANCEL
,
_
(
"Close"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_btnClose
->
SetDefault
();
sizerDialogButtons
->
Add
(
m_btnClose
,
0
,
wxALIGN_CENTER_VERTICAL
|
wxALL
,
5
);
m_btnClear
=
new
wxButton
(
itemDialog1
,
ID_CLEAR_ANNOTATION_CMP
,
_
(
"Clear Annotation"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_btnClear
->
SetForegroundColour
(
wxColour
(
0
,
0
,
230
));
sizerDialogButtons
->
Add
(
m_btnClear
,
0
,
wxALIGN_CENTER_VERTICAL
|
wxALL
,
5
);
m_btnApply
=
new
wxButton
(
itemDialog1
,
wxID_APPLY
,
_
(
"Annotation"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_btnApply
->
SetDefault
();
m_btnApply
->
SetForegroundColour
(
wxColour
(
198
,
0
,
0
));
sizerDialogButtons
->
Add
(
m_btnApply
,
0
,
wxALIGN_CENTER_VERTICAL
|
wxALL
,
5
);
////@end WinEDA_AnnotateFrame content construction
}
}
void
WinEDA_AnnotateFrame
::
OnApply
(
wxCommandEvent
&
event
)
/*!
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_APPLY
*/
void
WinEDA_AnnotateFrame
::
OnApplyClick
(
wxCommandEvent
&
event
)
{
{
int
response
;
int
response
;
wxString
message
;
wxString
message
;
...
@@ -302,7 +241,37 @@ void WinEDA_AnnotateFrame::OnApply( wxCommandEvent& event )
...
@@ -302,7 +241,37 @@ void WinEDA_AnnotateFrame::OnApply( wxCommandEvent& event )
m_btnClear
->
Enable
();
m_btnClear
->
Enable
();
}
}
void
WinEDA_AnnotateFrame
::
OnCancel
(
wxCommandEvent
&
event
)
/*!
* wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_DEANNOTATE_CMP
*/
void
WinEDA_AnnotateFrame
::
OnClearAnnotationCmpClick
(
wxCommandEvent
&
event
)
{
int
response
;
wxString
message
=
_
(
"Clear the existing annotation for "
);
if
(
GetLevel
()
)
message
+=
_
(
"the entire schematic?"
);
else
message
+=
_
(
"the current sheet?"
);
message
+=
_
(
"
\n\n
This operation will clear the existing annotation "
\
"and cannot be undone."
);
response
=
wxMessageBox
(
message
,
wxT
(
""
),
wxICON_EXCLAMATION
|
wxOK
|
wxCANCEL
);
if
(
response
==
wxCANCEL
)
return
;
DeleteAnnotation
(
m_Parent
,
GetLevel
()
);
m_btnClear
->
Enable
(
false
);
}
/*!
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL
*/
void
WinEDA_AnnotateFrame
::
OnCancelClick
(
wxCommandEvent
&
event
)
{
{
if
(
IsModal
()
)
if
(
IsModal
()
)
EndModal
(
wxID_CANCEL
);
EndModal
(
wxID_CANCEL
);
...
@@ -313,6 +282,7 @@ void WinEDA_AnnotateFrame::OnCancel( wxCommandEvent& event )
...
@@ -313,6 +282,7 @@ void WinEDA_AnnotateFrame::OnCancel( wxCommandEvent& event )
}
}
}
}
bool
WinEDA_AnnotateFrame
::
GetLevel
(
void
)
bool
WinEDA_AnnotateFrame
::
GetLevel
(
void
)
{
{
wxASSERT_MSG
(
((
m_rbEntireSchematic
!=
NULL
)
&&
wxASSERT_MSG
(
((
m_rbEntireSchematic
!=
NULL
)
&&
...
@@ -342,3 +312,40 @@ bool WinEDA_AnnotateFrame::GetSortOrder( void )
...
@@ -342,3 +312,40 @@ bool WinEDA_AnnotateFrame::GetSortOrder( void )
return
m_rbSortByPosition
->
GetValue
();
return
m_rbSortByPosition
->
GetValue
();
}
}
/*!
* Should we show tooltips?
*/
bool
WinEDA_AnnotateFrame
::
ShowToolTips
()
{
return
true
;
}
/*!
* Get bitmap resources
*/
wxBitmap
WinEDA_AnnotateFrame
::
GetBitmapResource
(
const
wxString
&
name
)
{
// Bitmap retrieval
////@begin WinEDA_AnnotateFrame bitmap retrieval
wxUnusedVar
(
name
);
return
wxNullBitmap
;
////@end WinEDA_AnnotateFrame bitmap retrieval
}
/*!
* Get icon resources
*/
wxIcon
WinEDA_AnnotateFrame
::
GetIconResource
(
const
wxString
&
name
)
{
// Icon retrieval
////@begin WinEDA_AnnotateFrame icon retrieval
wxUnusedVar
(
name
);
return
wxNullIcon
;
////@end WinEDA_AnnotateFrame icon retrieval
}
eeschema/annotate_dialog.h
View file @
a55ef8df
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Name: annotate_dialog.h
// Name: annotate_dialog.h
// Purpose:
// Purpose:
// Author: jean-pierre Charras
// Author: jean-pierre Charras
// Modified by:
// Modified by:
// Created:
05/02/2006 12:31:28
// Created:
16/04/2008 17:50:59
// RCS-ID:
// RCS-ID:
// Copyright: License GNU
// Copyright: License GNU
// Licence:
// Licence:
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Generated by DialogBlocks (unregistered), 16/04/2008 17:50:59
#ifndef _ANNOTATE_DIALOG_H_
#ifndef _ANNOTATE_DIALOG_H_
#define _ANNOTATE_DIALOG_H_
#define _ANNOTATE_DIALOG_H_
#if defined
(__GNUG__) && !defined
(NO_GCC_PRAGMA)
#if defined
(__GNUG__) && !defined
(NO_GCC_PRAGMA)
#pragma interface "annotate_dialog.h"
#pragma interface "annotate_dialog.h"
#endif
#endif
...
@@ -22,99 +22,107 @@
...
@@ -22,99 +22,107 @@
* Includes
* Includes
*/
*/
#include "fctsys.h"
////@begin includes
////@end includes
#include "common.h"
#include "program.h"
#include "libcmp.h"
#include "general.h"
/*!
/*!
*
Control identifier
s
*
Forward declaration
s
*/
*/
#define ID_DIALOG 10000
////@begin forward declarations
#define ID_ENTIRE_SCHEMATIC 10001
class
wxBoxSizer
;
#define ID_CURRENT_PAGE 10002
////@end forward declarations
#define ID_RESET_ANNOTATION 10003
#define ID_SORT_BY_POSITION 10004
#define ID_SORT_BY_VALUE 10005
#define ID_CLEAR_ANNOTATION 10006
#define ANNOTATE_DIALOG_STYLE wxDEFAULT_DIALOG_STYLE | MAYBE_RESIZE_BORDER
#define ANNOTATE_DIALOG_TITLE _( "Annotate" )
/*!
/*!
* Co
mpatibility
* Co
ntrol identifiers
*/
*/
#ifndef wxCLOSE_BOX
////@begin control identifiers
#define wxCLOSE_BOX 0x1000
#define ID_DIALOG 10000
#endif
#define ID_ENTIRE_SCHEMATIC 10002
#define ID_CURRENT_PAGE 10003
#define ID_RESET_ANNOTATION 10009
#define ID_SORT_BY_POSITION 10010
#define ID_SORT_BY_VALUE 10011
#define ID_CLEAR_ANNOTATION_CMP 10004
#define SYMBOL_WINEDA_ANNOTATEFRAME_STYLE wxDEFAULT_DIALOG_STYLE|MAYBE_RESIZE_BORDER
#define SYMBOL_WINEDA_ANNOTATEFRAME_TITLE _("EESchema Annotation")
#define SYMBOL_WINEDA_ANNOTATEFRAME_IDNAME ID_DIALOG
#define SYMBOL_WINEDA_ANNOTATEFRAME_SIZE wxSize(400, 300)
#define SYMBOL_WINEDA_ANNOTATEFRAME_POSITION wxDefaultPosition
////@end control identifiers
/*!
/*!
* WinEDA_AnnotateFrame class declaration
* WinEDA_AnnotateFrame class declaration
*/
*/
class
WinEDA_AnnotateFrame
:
public
wxDialog
class
WinEDA_AnnotateFrame
:
public
wxDialog
{
{
DECLARE_DYNAMIC_CLASS
(
WinEDA_AnnotateFrame
)
DECLARE_DYNAMIC_CLASS
(
WinEDA_AnnotateFrame
)
DECLARE_EVENT_TABLE
()
public
:
public
:
/// Constructors
/// Constructors
WinEDA_AnnotateFrame
();
WinEDA_AnnotateFrame
();
WinEDA_AnnotateFrame
(
WinEDA_SchematicFrame
*
parent
,
WinEDA_AnnotateFrame
(
WinEDA_SchematicFrame
*
parent
,
wxWindowID
id
=
SYMBOL_WINEDA_ANNOTATEFRAME_IDNAME
,
const
wxString
&
caption
=
SYMBOL_WINEDA_ANNOTATEFRAME_TITLE
,
const
wxPoint
&
pos
=
SYMBOL_WINEDA_ANNOTATEFRAME_POSITION
,
const
wxSize
&
size
=
SYMBOL_WINEDA_ANNOTATEFRAME_SIZE
,
long
style
=
SYMBOL_WINEDA_ANNOTATEFRAME_STYLE
);
wxWindowID
id
=
wxID_ANY
,
const
wxString
&
caption
=
ANNOTATE_DIALOG_TITLE
,
const
wxPoint
&
pos
=
wxDefaultPosition
,
const
wxSize
&
size
=
wxDefaultSize
,
long
style
=
ANNOTATE_DIALOG_STYLE
);
/// Creation
/// Creation
bool
Create
(
wxWindow
*
parent
,
bool
Create
(
wxWindow
*
parent
,
wxWindowID
id
=
SYMBOL_WINEDA_ANNOTATEFRAME_IDNAME
,
const
wxString
&
caption
=
SYMBOL_WINEDA_ANNOTATEFRAME_TITLE
,
const
wxPoint
&
pos
=
SYMBOL_WINEDA_ANNOTATEFRAME_POSITION
,
const
wxSize
&
size
=
SYMBOL_WINEDA_ANNOTATEFRAME_SIZE
,
long
style
=
SYMBOL_WINEDA_ANNOTATEFRAME_STYLE
);
wxWindowID
id
=
wxID_ANY
,
const
wxString
&
caption
=
ANNOTATE_DIALOG_TITLE
,
/// Destructor
const
wxPoint
&
pos
=
wxDefaultPosition
,
~
WinEDA_AnnotateFrame
();
const
wxSize
&
size
=
wxDefaultSize
,
long
style
=
ANNOTATE_DIALOG_STYLE
);
/// Initialises member variables
void
Init
();
/// Creates the controls and sizers
/// Creates the controls and sizers
void
CreateControls
();
void
CreateControls
();
////@begin WinEDA_AnnotateFrame event handler declarations
/// wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL
void
OnCancelClick
(
wxCommandEvent
&
event
);
/// wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_CLEAR_ANNOTATION_CMP
void
OnClearAnnotationCmpClick
(
wxCommandEvent
&
event
);
/// wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_APPLY
void
OnApplyClick
(
wxCommandEvent
&
event
);
////@end WinEDA_AnnotateFrame event handler declarations
////@begin WinEDA_AnnotateFrame member function declarations
/// Retrieves bitmap resources
/// Retrieves bitmap resources
wxBitmap
GetBitmapResource
(
const
wxString
&
name
);
wxBitmap
GetBitmapResource
(
const
wxString
&
name
);
/// Retrieves icon resources
/// Retrieves icon resources
wxIcon
GetIconResource
(
const
wxString
&
name
);
wxIcon
GetIconResource
(
const
wxString
&
name
);
////@end WinEDA_AnnotateFrame member function declarations
bool
GetLevel
(
void
);
bool
GetResetItems
(
void
);
bool
GetSortOrder
(
void
);
/// Should we show tooltips?
/// Should we show tooltips?
static
bool
ShowToolTips
();
static
bool
ShowToolTips
();
WinEDA_SchematicFrame
*
m_Parent
;
// User functions:
bool
GetLevel
(
void
);
private
:
bool
GetResetItems
(
void
);
void
CloseDialog
(
void
);
bool
GetSortOrder
(
void
);
void
OnClearAnnotation
(
wxCommandEvent
&
event
);
void
OnApply
(
wxCommandEvent
&
event
);
void
OnCancel
(
wxCommandEvent
&
event
);
////@begin WinEDA_AnnotateFrame member variables
wxRadioButton
*
m_rbEntireSchematic
;
wxRadioButton
*
m_rbEntireSchematic
;
wxRadioButton
*
m_rbSortByPosition
;
wxCheckBox
*
m_cbResetAnnotation
;
wxCheckBox
*
m_cbResetAnnotation
;
wxRadioButton
*
m_rbSortByPosition
;
wxRadioButton
*
rbSortByValue
;
wxBoxSizer
*
sizerDialogButtons
;
wxButton
*
m_btnClose
;
wxButton
*
m_btnClear
;
wxButton
*
m_btnClear
;
wxButton
*
m_btnApply
;
////@end WinEDA_AnnotateFrame member variables
WinEDA_SchematicFrame
*
m_Parent
;
DECLARE_EVENT_TABLE
()
};
};
#endif
#endif
// _ANNOTATE_DIALOG_H_
// _ANNOTATE_DIALOG_H_
eeschema/annotate_dialog.pjd
View file @
a55ef8df
...
@@ -108,10 +108,12 @@
...
@@ -108,10 +108,12 @@
<bool
name=
"use_resource_archive"
>
0
</bool>
<bool
name=
"use_resource_archive"
>
0
</bool>
<bool
name=
"use_generated_xrc_cpp"
>
0
</bool>
<bool
name=
"use_generated_xrc_cpp"
>
0
</bool>
<bool
name=
"always_generate_xrc"
>
1
</bool>
<bool
name=
"always_generate_xrc"
>
1
</bool>
<bool
name=
"use_id_name_for_name"
>
0
</bool>
<bool
name=
"archive_xrc_files"
>
1
</bool>
<bool
name=
"archive_xrc_files"
>
1
</bool>
<bool
name=
"archive_image_files"
>
1
</bool>
<bool
name=
"archive_image_files"
>
1
</bool>
<bool
name=
"archive_all_image_files"
>
0
</bool>
<bool
name=
"archive_all_image_files"
>
0
</bool>
<bool
name=
"xrc_retain_relative_paths"
>
1
</bool>
<bool
name=
"xrc_retain_relative_paths"
>
1
</bool>
<bool
name=
"xrc_generate_id_tags"
>
0
</bool>
</header>
</header>
<data>
<data>
<document>
<document>
...
@@ -134,6 +136,7 @@
...
@@ -134,6 +136,7 @@
<long
name=
"locked"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"template-name"
>
""
</string>
<string
name=
"template-name"
>
""
</string>
<bool
name=
"dirty"
>
1
</bool>
<bool
name=
"dirty"
>
1
</bool>
<long
name=
"makefile-last-written"
>
-8519680
</long>
<string
name=
"Compiler name"
>
""
</string>
<string
name=
"Compiler name"
>
""
</string>
<string
name=
"Build mode"
>
"Debug"
</string>
<string
name=
"Build mode"
>
"Debug"
</string>
<string
name=
"Unicode mode"
>
"ANSI"
</string>
<string
name=
"Unicode mode"
>
"ANSI"
</string>
...
@@ -175,6 +178,8 @@
...
@@ -175,6 +178,8 @@
<string
name=
"wxWidgets build command"
>
"%AUTO%"
</string>
<string
name=
"wxWidgets build command"
>
"%AUTO%"
</string>
<string
name=
"wxWidgets clean command"
>
"%AUTO%"
</string>
<string
name=
"wxWidgets clean command"
>
"%AUTO%"
</string>
<string
name=
"PATH variable"
>
"%AUTO%"
</string>
<string
name=
"PATH variable"
>
"%AUTO%"
</string>
<bool
name=
"Suppress source rules"
>
0
</bool>
<bool
name=
"Enable makefile generation"
>
1
</bool>
</document>
</document>
</document>
</document>
</data>
</data>
...
@@ -246,7 +251,6 @@
...
@@ -246,7 +251,6 @@
<bool
name=
"proxy-wxDEFAULT_DIALOG_STYLE"
>
1
</bool>
<bool
name=
"proxy-wxDEFAULT_DIALOG_STYLE"
>
1
</bool>
<bool
name=
"proxy-wxCAPTION"
>
0
</bool>
<bool
name=
"proxy-wxCAPTION"
>
0
</bool>
<bool
name=
"proxy-wxRESIZE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxRESIZE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxTHICK_FRAME"
>
0
</bool>
<bool
name=
"proxy-wxSYSTEM_MENU"
>
0
</bool>
<bool
name=
"proxy-wxSYSTEM_MENU"
>
0
</bool>
<bool
name=
"proxy-wxSTAY_ON_TOP"
>
0
</bool>
<bool
name=
"proxy-wxSTAY_ON_TOP"
>
0
</bool>
<bool
name=
"proxy-wxDIALOG_NO_PARENT"
>
0
</bool>
<bool
name=
"proxy-wxDIALOG_NO_PARENT"
>
0
</bool>
...
@@ -278,7 +282,7 @@
...
@@ -278,7 +282,7 @@
<bool
name=
"proxy-AUI manager"
>
0
</bool>
<bool
name=
"proxy-AUI manager"
>
0
</bool>
<string
name=
"proxy-Event sources"
>
""
</string>
<string
name=
"proxy-Event sources"
>
""
</string>
<document>
<document>
<string
name=
"title"
>
"wxBoxSizer
H
"
</string>
<string
name=
"title"
>
"wxBoxSizer
V
"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"sizer"
</string>
<string
name=
"icon-name"
>
"sizer"
</string>
...
@@ -287,7 +291,7 @@
...
@@ -287,7 +291,7 @@
<long
name=
"title-mode"
>
0
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"proxy-type"
>
"wbBoxSizerProxy"
</string>
<string
name=
"proxy-type"
>
"wbBoxSizerProxy"
</string>
<string
name=
"proxy-Orientation"
>
"
Horizont
al"
</string>
<string
name=
"proxy-Orientation"
>
"
Vertic
al"
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<bool
name=
"proxy-wxSHAPED"
>
0
</bool>
<bool
name=
"proxy-wxSHAPED"
>
0
</bool>
<bool
name=
"proxy-wxADJUST_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxADJUST_MINSIZE"
>
0
</bool>
...
@@ -306,7 +310,7 @@
...
@@ -306,7 +310,7 @@
<string
name=
"proxy-type"
>
"wbBoxSizerProxy"
</string>
<string
name=
"proxy-type"
>
"wbBoxSizerProxy"
</string>
<string
name=
"proxy-Orientation"
>
"Vertical"
</string>
<string
name=
"proxy-Orientation"
>
"Vertical"
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-AlignH"
>
"
Centre
"
</string>
<string
name=
"proxy-AlignH"
>
"
Expand
"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Border"
>
5
</long>
<long
name=
"proxy-Border"
>
5
</long>
...
@@ -319,34 +323,33 @@
...
@@ -319,34 +323,33 @@
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<document>
<document>
<string
name=
"title"
>
"wx
RadioBox: ID_RADIOBOX
"
</string>
<string
name=
"title"
>
"wx
StaticText: wxID_STATIC
"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"
radiobox
"
</string>
<string
name=
"icon-name"
>
"
statictext
"
</string>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"5/2/2006"
</string>
<string
name=
"created"
>
"16/4/2008"
</string>
<string
name=
"proxy-type"
>
"wbRadioBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbStaticTextProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_RADIOBOX"
</string>
<string
name=
"proxy-Id name"
>
"wxID_STATIC"
</string>
<long
name=
"proxy-Id value"
>
10001
</long>
<long
name=
"proxy-Id value"
>
5105
</long>
<string
name=
"proxy-Class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Base class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Class"
>
"wxStaticText"
</string>
<string
name=
"proxy-Base class"
>
"wxStaticText"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
"m_AnnotProjetCtrl"
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-Label"
>
"annotate:"
</string>
<string
name=
"proxy-Label"
>
"Scope"
</string>
<long
name=
"proxy-Major dimension count"
>
1
</long>
<long
name=
"proxy-Wrapping width"
>
-1
</long>
<string
name=
"proxy-Items"
>
"Hierarchy|Current sheet"
</string>
<long
name=
"proxy-Initial value"
>
0
</long>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
"
008040
"
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
"
8, wxSWISS, wxNORMAL, wxBOLD, false, Tahoma
"
</string>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
...
@@ -357,8 +360,16 @@
...
@@ -357,8 +360,16 @@
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxRA_SPECIFY_ROWS"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_LEFT"
>
0
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_COLS"
>
1
</bool>
<bool
name=
"proxy-wxALIGN_RIGHT"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_CENTRE"
>
0
</bool>
<bool
name=
"proxy-wxST_NO_AUTORESIZE"
>
0
</bool>
<bool
name=
"proxy-wxNO_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxSIMPLE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxDOUBLE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxSUNKEN_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxRAISED_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxSTATIC_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxNO_FULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxNO_FULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxFULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxFULL_REPAINT_ON_RESIZE"
>
0
</bool>
...
@@ -367,7 +378,7 @@
...
@@ -367,7 +378,7 @@
<long
name=
"proxy-Y"
>
-1
</long>
<long
name=
"proxy-Y"
>
-1
</long>
<long
name=
"proxy-Width"
>
-1
</long>
<long
name=
"proxy-Width"
>
-1
</long>
<long
name=
"proxy-Height"
>
-1
</long>
<long
name=
"proxy-Height"
>
-1
</long>
<string
name=
"proxy-AlignH"
>
"
Expand
"
</string>
<string
name=
"proxy-AlignH"
>
"
Left
"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Border"
>
5
</long>
<long
name=
"proxy-Border"
>
5
</long>
...
@@ -382,97 +393,247 @@
...
@@ -382,97 +393,247 @@
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
</document>
</document>
<document>
<document>
<string
name=
"title"
>
"wx
RadioBox: ID_RADIOBOX1
"
</string>
<string
name=
"title"
>
"wx
BoxSizer V
"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"
radiobox
"
</string>
<string
name=
"icon-name"
>
"
sizer
"
</string>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"5/2/2006"
</string>
<string
name=
"created"
>
"16/4/2008"
</string>
<string
name=
"proxy-type"
>
"wbRadioBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbBoxSizerProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_RADIOBOX1"
</string>
<string
name=
"proxy-Orientation"
>
"Vertical"
</string>
<long
name=
"proxy-Id value"
>
10002
</long>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
"m_AnnotNewCmpCtrl"
</string>
<string
name=
"proxy-Label"
>
"select items:"
</string>
<long
name=
"proxy-Major dimension count"
>
1
</long>
<string
name=
"proxy-Items"
>
"all components|new components only"
</string>
<long
name=
"proxy-Initial value"
>
0
</long>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxRA_SPECIFY_ROWS"
>
0
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_COLS"
>
1
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxNO_FULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxFULL_REPAINT_ON_RESIZE"
>
0
</bool>
<string
name=
"proxy-Custom styles"
>
""
</string>
<long
name=
"proxy-X"
>
-1
</long>
<long
name=
"proxy-Y"
>
-1
</long>
<long
name=
"proxy-Width"
>
-1
</long>
<long
name=
"proxy-Height"
>
-1
</long>
<string
name=
"proxy-AlignH"
>
"Expand"
</string>
<string
name=
"proxy-AlignH"
>
"Expand"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Border"
>
5
</long>
<long
name=
"proxy-Border"
>
2
5
</long>
<bool
name=
"proxy-wxLEFT"
>
1
</bool>
<bool
name=
"proxy-wxLEFT"
>
1
</bool>
<bool
name=
"proxy-wxRIGHT"
>
1
</bool>
<bool
name=
"proxy-wxRIGHT"
>
0
</bool>
<bool
name=
"proxy-wxTOP"
>
1
</bool>
<bool
name=
"proxy-wxTOP"
>
0
</bool>
<bool
name=
"proxy-wxBOTTOM"
>
1
</bool>
<bool
name=
"proxy-wxBOTTOM"
>
0
</bool>
<bool
name=
"proxy-wxSHAPED"
>
0
</bool>
<bool
name=
"proxy-wxSHAPED"
>
0
</bool>
<bool
name=
"proxy-wxADJUST_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxADJUST_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<string
name=
"proxy-Custom arguments"
>
""
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
<document>
<string
name=
"title"
>
"wxRadioButton: ID_ENTIRE_SCHEMATIC"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"radiobutton"
</string>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"16/4/2008"
</string>
<string
name=
"proxy-type"
>
"wbRadioButtonProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_ENTIRE_SCHEMATIC"
</string>
<long
name=
"proxy-Id value"
>
10002
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxRadioButton"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioButton"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
"m_rbEntireSchematic"
</string>
<string
name=
"proxy-Label"
>
"Annotate the
&
entire schematic"
</string>
<bool
name=
"proxy-Initial value"
>
1
</bool>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxRB_GROUP"
>
1
</bool>
<bool
name=
"proxy-wxRB_SINGLE"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxNO_FULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxFULL_REPAINT_ON_RESIZE"
>
0
</bool>
<string
name=
"proxy-Custom styles"
>
""
</string>
<long
name=
"proxy-X"
>
-1
</long>
<long
name=
"proxy-Y"
>
-1
</long>
<long
name=
"proxy-Width"
>
-1
</long>
<long
name=
"proxy-Height"
>
-1
</long>
<string
name=
"proxy-AlignH"
>
"Expand"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Border"
>
5
</long>
<bool
name=
"proxy-wxLEFT"
>
1
</bool>
<bool
name=
"proxy-wxRIGHT"
>
1
</bool>
<bool
name=
"proxy-wxTOP"
>
1
</bool>
<bool
name=
"proxy-wxBOTTOM"
>
1
</bool>
<bool
name=
"proxy-wxSHAPED"
>
0
</bool>
<bool
name=
"proxy-wxADJUST_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<string
name=
"proxy-Custom arguments"
>
""
</string>
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
</document>
<document>
<string
name=
"title"
>
"wxRadioButton: ID_CURRENT_PAGE"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"radiobutton"
</string>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"16/4/2008"
</string>
<string
name=
"proxy-type"
>
"wbRadioButtonProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_CURRENT_PAGE"
</string>
<long
name=
"proxy-Id value"
>
10003
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxRadioButton"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioButton"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-Label"
>
"Annotate the current
&
page only"
</string>
<bool
name=
"proxy-Initial value"
>
0
</bool>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxRB_GROUP"
>
0
</bool>
<bool
name=
"proxy-wxRB_SINGLE"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxNO_FULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxFULL_REPAINT_ON_RESIZE"
>
0
</bool>
<string
name=
"proxy-Custom styles"
>
""
</string>
<long
name=
"proxy-X"
>
-1
</long>
<long
name=
"proxy-Y"
>
-1
</long>
<long
name=
"proxy-Width"
>
-1
</long>
<long
name=
"proxy-Height"
>
-1
</long>
<string
name=
"proxy-AlignH"
>
"Expand"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Border"
>
5
</long>
<bool
name=
"proxy-wxLEFT"
>
1
</bool>
<bool
name=
"proxy-wxRIGHT"
>
1
</bool>
<bool
name=
"proxy-wxTOP"
>
1
</bool>
<bool
name=
"proxy-wxBOTTOM"
>
1
</bool>
<bool
name=
"proxy-wxSHAPED"
>
0
</bool>
<bool
name=
"proxy-wxADJUST_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<string
name=
"proxy-Custom arguments"
>
""
</string>
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
</document>
<document>
<string
name=
"title"
>
"wxCheckBox: ID_RESET_ANNOTATION"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"checkbox"
</string>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"16/4/2008"
</string>
<string
name=
"proxy-type"
>
"wbCheckBoxProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_RESET_ANNOTATION"
</string>
<long
name=
"proxy-Id value"
>
10009
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxCheckBox"
</string>
<string
name=
"proxy-Base class"
>
"wxCheckBox"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
"m_cbResetAnnotation"
</string>
<string
name=
"proxy-Label"
>
"
&
Reset existing annotation"
</string>
<bool
name=
"proxy-Initial value"
>
0
</bool>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
"D92634"
</string>
<string
name=
"proxy-Font"
>
""
</string>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<bool
name=
"proxy-wxALIGN_RIGHT"
>
0
</bool>
<bool
name=
"proxy-wxCHK_2STATE"
>
0
</bool>
<bool
name=
"proxy-wxCHK_3STATE"
>
0
</bool>
<bool
name=
"proxy-wxCHK_ALLOW_3RD_STATE_FOR_USER"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxNO_FULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxFULL_REPAINT_ON_RESIZE"
>
0
</bool>
<string
name=
"proxy-Custom styles"
>
""
</string>
<long
name=
"proxy-X"
>
-1
</long>
<long
name=
"proxy-Y"
>
-1
</long>
<long
name=
"proxy-Width"
>
-1
</long>
<long
name=
"proxy-Height"
>
-1
</long>
<string
name=
"proxy-AlignH"
>
"Expand"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Border"
>
5
</long>
<bool
name=
"proxy-wxLEFT"
>
1
</bool>
<bool
name=
"proxy-wxRIGHT"
>
1
</bool>
<bool
name=
"proxy-wxTOP"
>
1
</bool>
<bool
name=
"proxy-wxBOTTOM"
>
1
</bool>
<bool
name=
"proxy-wxSHAPED"
>
0
</bool>
<bool
name=
"proxy-wxADJUST_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<string
name=
"proxy-Custom arguments"
>
""
</string>
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
</document>
</document>
</document>
<document>
<document>
<string
name=
"title"
>
"wx
RadioBox: ID_RADIOBOX2
"
</string>
<string
name=
"title"
>
"wx
StaticText: wxID_STATIC
"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"
radiobox
"
</string>
<string
name=
"icon-name"
>
"
statictext
"
</string>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"5/7/2007"
</string>
<string
name=
"created"
>
"16/4/2008"
</string>
<string
name=
"proxy-type"
>
"wbRadioBoxProxy"
</string>
<string
name=
"proxy-type"
>
"wbStaticTextProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_RADIOBOX2"
</string>
<string
name=
"proxy-Id name"
>
"wxID_STATIC"
</string>
<long
name=
"proxy-Id value"
>
10005
</long>
<long
name=
"proxy-Id value"
>
5105
</long>
<string
name=
"proxy-Class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Base class"
>
"wxRadioBox"
</string>
<string
name=
"proxy-Class"
>
"wxStaticText"
</string>
<string
name=
"proxy-Base class"
>
"wxStaticText"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
"m_AnnotSortCmpCtrl"
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-Label"
>
"sorting:"
</string>
<string
name=
"proxy-Label"
>
"Order"
</string>
<long
name=
"proxy-Major dimension count"
>
1
</long>
<long
name=
"proxy-Wrapping width"
>
-1
</long>
<string
name=
"proxy-Items"
>
"by position|by value"
</string>
<long
name=
"proxy-Initial value"
>
0
</long>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
"
7D020C
"
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
"
8, wxSWISS, wxNORMAL, wxBOLD, false, Tahoma
"
</string>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
...
@@ -483,8 +644,16 @@
...
@@ -483,8 +644,16 @@
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxRA_SPECIFY_ROWS"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_LEFT"
>
0
</bool>
<bool
name=
"proxy-wxRA_SPECIFY_COLS"
>
1
</bool>
<bool
name=
"proxy-wxALIGN_RIGHT"
>
0
</bool>
<bool
name=
"proxy-wxALIGN_CENTRE"
>
0
</bool>
<bool
name=
"proxy-wxST_NO_AUTORESIZE"
>
0
</bool>
<bool
name=
"proxy-wxNO_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxSIMPLE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxDOUBLE_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxSUNKEN_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxRAISED_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxSTATIC_BORDER"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxNO_FULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxNO_FULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxFULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxFULL_REPAINT_ON_RESIZE"
>
0
</bool>
...
@@ -493,7 +662,7 @@
...
@@ -493,7 +662,7 @@
<long
name=
"proxy-Y"
>
-1
</long>
<long
name=
"proxy-Y"
>
-1
</long>
<long
name=
"proxy-Width"
>
-1
</long>
<long
name=
"proxy-Width"
>
-1
</long>
<long
name=
"proxy-Height"
>
-1
</long>
<long
name=
"proxy-Height"
>
-1
</long>
<string
name=
"proxy-AlignH"
>
"
Expand
"
</string>
<string
name=
"proxy-AlignH"
>
"
Left
"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Border"
>
5
</long>
<long
name=
"proxy-Border"
>
5
</long>
...
@@ -507,9 +676,159 @@
...
@@ -507,9 +676,159 @@
<string
name=
"proxy-Custom arguments"
>
""
</string>
<string
name=
"proxy-Custom arguments"
>
""
</string>
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
</document>
</document>
<document>
<string
name=
"title"
>
"wxBoxSizer V"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"sizer"
</string>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"16/4/2008"
</string>
<string
name=
"proxy-type"
>
"wbBoxSizerProxy"
</string>
<string
name=
"proxy-Orientation"
>
"Vertical"
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-AlignH"
>
"Expand"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Border"
>
25
</long>
<bool
name=
"proxy-wxLEFT"
>
1
</bool>
<bool
name=
"proxy-wxRIGHT"
>
0
</bool>
<bool
name=
"proxy-wxTOP"
>
0
</bool>
<bool
name=
"proxy-wxBOTTOM"
>
0
</bool>
<bool
name=
"proxy-wxSHAPED"
>
0
</bool>
<bool
name=
"proxy-wxADJUST_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<document>
<string
name=
"title"
>
"wxRadioButton: ID_SORT_BY_POSITION"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"radiobutton"
</string>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"16/4/2008"
</string>
<string
name=
"proxy-type"
>
"wbRadioButtonProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_SORT_BY_POSITION"
</string>
<long
name=
"proxy-Id value"
>
10010
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxRadioButton"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioButton"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
"m_rbSortByPosition"
</string>
<string
name=
"proxy-Label"
>
"Sort Components by
&
Y Position"
</string>
<bool
name=
"proxy-Initial value"
>
1
</bool>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxRB_GROUP"
>
1
</bool>
<bool
name=
"proxy-wxRB_SINGLE"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxNO_FULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxFULL_REPAINT_ON_RESIZE"
>
0
</bool>
<string
name=
"proxy-Custom styles"
>
""
</string>
<long
name=
"proxy-X"
>
-1
</long>
<long
name=
"proxy-Y"
>
-1
</long>
<long
name=
"proxy-Width"
>
-1
</long>
<long
name=
"proxy-Height"
>
-1
</long>
<string
name=
"proxy-AlignH"
>
"Expand"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Border"
>
5
</long>
<bool
name=
"proxy-wxLEFT"
>
1
</bool>
<bool
name=
"proxy-wxRIGHT"
>
1
</bool>
<bool
name=
"proxy-wxTOP"
>
1
</bool>
<bool
name=
"proxy-wxBOTTOM"
>
1
</bool>
<bool
name=
"proxy-wxSHAPED"
>
0
</bool>
<bool
name=
"proxy-wxADJUST_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<string
name=
"proxy-Custom arguments"
>
""
</string>
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
</document>
<document>
<string
name=
"title"
>
"wxRadioButton: ID_SORT_BY_VALUE"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"radiobutton"
</string>
<long
name=
"is-transient"
>
0
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"16/4/2008"
</string>
<string
name=
"proxy-type"
>
"wbRadioButtonProxy"
</string>
<string
name=
"proxy-Id name"
>
"ID_SORT_BY_VALUE"
</string>
<long
name=
"proxy-Id value"
>
10011
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxRadioButton"
</string>
<string
name=
"proxy-Base class"
>
"wxRadioButton"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
"rbSortByValue"
</string>
<string
name=
"proxy-Label"
>
"Sort Components by
&
Value"
</string>
<bool
name=
"proxy-Initial value"
>
0
</bool>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data validator"
>
""
</string>
<string
name=
"proxy-Data source"
>
""
</string>
<string
name=
"proxy-Data class name"
>
""
</string>
<string
name=
"proxy-Data class implementation filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<bool
name=
"proxy-wxRB_GROUP"
>
0
</bool>
<bool
name=
"proxy-wxRB_SINGLE"
>
0
</bool>
<bool
name=
"proxy-wxWANTS_CHARS"
>
0
</bool>
<bool
name=
"proxy-wxNO_FULL_REPAINT_ON_RESIZE"
>
0
</bool>
<bool
name=
"proxy-wxFULL_REPAINT_ON_RESIZE"
>
0
</bool>
<string
name=
"proxy-Custom styles"
>
""
</string>
<long
name=
"proxy-X"
>
-1
</long>
<long
name=
"proxy-Y"
>
-1
</long>
<long
name=
"proxy-Width"
>
-1
</long>
<long
name=
"proxy-Height"
>
-1
</long>
<string
name=
"proxy-AlignH"
>
"Expand"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Border"
>
5
</long>
<bool
name=
"proxy-wxLEFT"
>
1
</bool>
<bool
name=
"proxy-wxRIGHT"
>
1
</bool>
<bool
name=
"proxy-wxTOP"
>
1
</bool>
<bool
name=
"proxy-wxBOTTOM"
>
1
</bool>
<bool
name=
"proxy-wxSHAPED"
>
0
</bool>
<bool
name=
"proxy-wxADJUST_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<string
name=
"proxy-Custom arguments"
>
""
</string>
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
</document>
</document>
</document>
</document>
<document>
<document>
<string
name=
"title"
>
"wxBoxSizer
V
"
</string>
<string
name=
"title"
>
"wxBoxSizer
H
"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"sizer"
</string>
<string
name=
"icon-name"
>
"sizer"
</string>
...
@@ -519,8 +838,8 @@
...
@@ -519,8 +838,8 @@
<long
name=
"locked"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"5/2/2006"
</string>
<string
name=
"created"
>
"5/2/2006"
</string>
<string
name=
"proxy-type"
>
"wbBoxSizerProxy"
</string>
<string
name=
"proxy-type"
>
"wbBoxSizerProxy"
</string>
<string
name=
"proxy-Orientation"
>
"
Vertic
al"
</string>
<string
name=
"proxy-Orientation"
>
"
Horizont
al"
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
"
sizerDialogButtons
"
</string>
<string
name=
"proxy-AlignH"
>
"Centre"
</string>
<string
name=
"proxy-AlignH"
>
"Centre"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<string
name=
"proxy-AlignV"
>
"Centre"
</string>
<long
name=
"proxy-Stretch factor"
>
0
</long>
<long
name=
"proxy-Stretch factor"
>
0
</long>
...
@@ -534,7 +853,7 @@
...
@@ -534,7 +853,7 @@
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<bool
name=
"proxy-wxFIXED_MINSIZE"
>
0
</bool>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<string
name=
"proxy-Platform"
>
"
<
Any platform
>
"
</string>
<document>
<document>
<string
name=
"title"
>
"wxButton:
ID_ANNOTATE_CMP
"
</string>
<string
name=
"title"
>
"wxButton:
wxID_CANCEL
"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"dialogcontrol"
</string>
<string
name=
"icon-name"
>
"dialogcontrol"
</string>
...
@@ -542,19 +861,20 @@
...
@@ -542,19 +861,20 @@
<long
name=
"owns-file"
>
1
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"
5/2/2006
"
</string>
<string
name=
"created"
>
"
16/4/2008
"
</string>
<string
name=
"proxy-type"
>
"wbButtonProxy"
</string>
<string
name=
"proxy-type"
>
"wbButtonProxy"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_BUTTON_CLICKED|OnAnnotateCmpClick"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_BUTTON_CLICKED|OnCancelClick|||"
</string>
<string
name=
"proxy-Id name"
>
"ID_ANNOTATE_CMP"
</string>
<string
name=
"proxy-Id name"
>
"wxID_CANCEL"
</string>
<long
name=
"proxy-Id value"
>
10003
</long>
<long
name=
"proxy-Id value"
>
5101
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxButton"
</string>
<string
name=
"proxy-Class"
>
"wxButton"
</string>
<string
name=
"proxy-Base class"
>
"wxButton"
</string>
<string
name=
"proxy-Base class"
>
"wxButton"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
"
m_btnClose
"
</string>
<string
name=
"proxy-Label"
>
"
&
Annotat
e"
</string>
<string
name=
"proxy-Label"
>
"
Clos
e"
</string>
<bool
name=
"proxy-Default"
>
1
</bool>
<bool
name=
"proxy-Default"
>
1
</bool>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
...
@@ -566,7 +886,7 @@
...
@@ -566,7 +886,7 @@
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
"
C60000
"
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
...
@@ -600,7 +920,7 @@
...
@@ -600,7 +920,7 @@
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
</document>
</document>
<document>
<document>
<string
name=
"title"
>
"wxButton: ID_
DEANNOTATE
_CMP"
</string>
<string
name=
"title"
>
"wxButton: ID_
CLEAR_ANNOTATION
_CMP"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"dialogcontrol"
</string>
<string
name=
"icon-name"
>
"dialogcontrol"
</string>
...
@@ -608,19 +928,20 @@
...
@@ -608,19 +928,20 @@
<long
name=
"owns-file"
>
1
</long>
<long
name=
"owns-file"
>
1
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"title-mode"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"
5/2/2006
"
</string>
<string
name=
"created"
>
"
16/4/2008
"
</string>
<string
name=
"proxy-type"
>
"wbButtonProxy"
</string>
<string
name=
"proxy-type"
>
"wbButtonProxy"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_BUTTON_CLICKED|On
DeannotateCmpClick
"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_BUTTON_CLICKED|On
ClearAnnotationCmpClick|||
"
</string>
<string
name=
"proxy-Id name"
>
"ID_
DEANNOTATE
_CMP"
</string>
<string
name=
"proxy-Id name"
>
"ID_
CLEAR_ANNOTATION
_CMP"
</string>
<long
name=
"proxy-Id value"
>
10004
</long>
<long
name=
"proxy-Id value"
>
10004
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxButton"
</string>
<string
name=
"proxy-Class"
>
"wxButton"
</string>
<string
name=
"proxy-Base class"
>
"wxButton"
</string>
<string
name=
"proxy-Base class"
>
"wxButton"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
"
m_btnClear
"
</string>
<string
name=
"proxy-Label"
>
"
&
Del Annotate
"
</string>
<string
name=
"proxy-Label"
>
"
Clear Annotation
"
</string>
<bool
name=
"proxy-Default"
>
0
</bool>
<bool
name=
"proxy-Default"
>
0
</bool>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
...
@@ -666,7 +987,7 @@
...
@@ -666,7 +987,7 @@
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
<string
name=
"proxy-Custom ctor arguments"
>
""
</string>
</document>
</document>
<document>
<document>
<string
name=
"title"
>
"wxButton: wxID_
CANCEL
"
</string>
<string
name=
"title"
>
"wxButton: wxID_
APPLY
"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"type"
>
"dialog-control-document"
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"filename"
>
""
</string>
<string
name=
"icon-name"
>
"dialogcontrol"
</string>
<string
name=
"icon-name"
>
"dialogcontrol"
</string>
...
@@ -676,18 +997,19 @@
...
@@ -676,18 +997,19 @@
<long
name=
"locked"
>
0
</long>
<long
name=
"locked"
>
0
</long>
<string
name=
"created"
>
"5/2/2006"
</string>
<string
name=
"created"
>
"5/2/2006"
</string>
<string
name=
"proxy-type"
>
"wbButtonProxy"
</string>
<string
name=
"proxy-type"
>
"wbButtonProxy"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_BUTTON_CLICKED|OnCancelClick|||"
</string>
<string
name=
"event-handler-0"
>
"wxEVT_COMMAND_BUTTON_CLICKED|OnApplyClick|||"
</string>
<string
name=
"proxy-Id name"
>
"wxID_CANCEL"
</string>
<string
name=
"proxy-Id name"
>
"wxID_APPLY"
</string>
<long
name=
"proxy-Id value"
>
5101
</long>
<long
name=
"proxy-Id value"
>
5102
</long>
<string
name=
"proxy-Name"
>
""
</string>
<string
name=
"proxy-Class"
>
"wxButton"
</string>
<string
name=
"proxy-Class"
>
"wxButton"
</string>
<string
name=
"proxy-Base class"
>
"wxButton"
</string>
<string
name=
"proxy-Base class"
>
"wxButton"
</string>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-External implementation"
>
1
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<bool
name=
"proxy-Separate files"
>
0
</bool>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Implementation filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Header filename"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
""
</string>
<string
name=
"proxy-Member variable name"
>
"
m_btnApply
"
</string>
<string
name=
"proxy-Label"
>
"
&
Cancel
"
</string>
<string
name=
"proxy-Label"
>
"
Annotation
"
</string>
<bool
name=
"proxy-Default"
>
0
</bool>
<bool
name=
"proxy-Default"
>
1
</bool>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Help text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Tooltip text"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
<string
name=
"proxy-Data variable"
>
""
</string>
...
@@ -698,7 +1020,7 @@
...
@@ -698,7 +1020,7 @@
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class header filename"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Data class manager window"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Background colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
""
</string>
<string
name=
"proxy-Foreground colour"
>
"
C60000
"
</string>
<string
name=
"proxy-Font"
>
""
</string>
<string
name=
"proxy-Font"
>
""
</string>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Hidden"
>
0
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
<bool
name=
"proxy-Enabled"
>
1
</bool>
...
...
internat/fr/kicad.mo
View file @
a55ef8df
No preview for this file type
internat/fr/kicad.po
View file @
a55ef8df
...
@@ -2,8 +2,8 @@ msgid ""
...
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: kicad\n"
"Project-Id-Version: kicad\n"
"Report-Msgid-Bugs-To: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-04-16
11:2
6+0100\n"
"POT-Creation-Date: 2008-04-16
20:1
6+0100\n"
"PO-Revision-Date: 2008-04-16
11:31
+0100\n"
"PO-Revision-Date: 2008-04-16
20:16
+0100\n"
"Last-Translator: \n"
"Last-Translator: \n"
"Language-Team: kicad team <jean-pierre.charras@ujf-grenoble.fr>\n"
"Language-Team: kicad team <jean-pierre.charras@ujf-grenoble.fr>\n"
"MIME-Version: 1.0\n"
"MIME-Version: 1.0\n"
...
@@ -5865,39 +5865,39 @@ msgstr "Tri"
...
@@ -5865,39 +5865,39 @@ msgstr "Tri"
msgid "Bad Bus Label: "
msgid "Bad Bus Label: "
msgstr "Mauvais label de Bus: "
msgstr "Mauvais label de Bus: "
#: eeschema/annotate.cpp:7
13
#: eeschema/annotate.cpp:7
06
#, c-format
#, c-format
msgid "item not annotated: %s%s"
msgid "item not annotated: %s%s"
msgstr "item non numéroté: %s%s"
msgstr "item non numéroté: %s%s"
#: eeschema/annotate.cpp:71
8
#: eeschema/annotate.cpp:71
1
#, c-format
#, c-format
msgid "( unit %d)"
msgid "( unit %d)"
msgstr "( Unité %d)"
msgstr "( Unité %d)"
#: eeschema/annotate.cpp:7
35
#: eeschema/annotate.cpp:7
28
#, c-format
#, c-format
msgid "Error item %s%s"
msgid "Error item %s%s"
msgstr "Erreur item %s%s"
msgstr "Erreur item %s%s"
#: eeschema/annotate.cpp:73
8
#: eeschema/annotate.cpp:73
1
#, c-format
#, c-format
msgid " unit %d and no more than %d parts"
msgid " unit %d and no more than %d parts"
msgstr " unité %d et plus que %d parts"
msgstr " unité %d et plus que %d parts"
#: eeschema/annotate.cpp:7
72
#: eeschema/annotate.cpp:7
65
#: eeschema/annotate.cpp:7
95
#: eeschema/annotate.cpp:7
88
#, c-format
#, c-format
msgid "Multiple item %s%s"
msgid "Multiple item %s%s"
msgstr "Multipleélément %s%s"
msgstr "Multipleélément %s%s"
#: eeschema/annotate.cpp:77
7
#: eeschema/annotate.cpp:77
0
#: eeschema/annotate.cpp:
800
#: eeschema/annotate.cpp:
793
#, c-format
#, c-format
msgid " (unit %d)"
msgid " (unit %d)"
msgstr " ( Unité %d)"
msgstr " ( Unité %d)"
#: eeschema/annotate.cpp:81
7
#: eeschema/annotate.cpp:81
0
#, c-format
#, c-format
msgid "Diff values for %s%d%c (%s) and %s%d%c (%s)"
msgid "Diff values for %s%d%c (%s) and %s%d%c (%s)"
msgstr "Valeurs différentes pour %s%d%c (%s) et %s%d%c (%s)"
msgstr "Valeurs différentes pour %s%d%c (%s) et %s%d%c (%s)"
...
@@ -6877,6 +6877,90 @@ msgstr "Exporter le symbole"
...
@@ -6877,6 +6877,90 @@ msgstr "Exporter le symbole"
msgid "Save Symbol in [%s]"
msgid "Save Symbol in [%s]"
msgstr "Symbole sauvé en [%s]"
msgstr "Symbole sauvé en [%s]"
#: eeschema/annotate_dialog.cpp:158
msgid "Scope"
msgstr "Sélection"
#: eeschema/annotate_dialog.cpp:166
msgid "Annotate the &entire schematic"
msgstr "Annot&er la schématique complète"
#: eeschema/annotate_dialog.cpp:170
msgid "Annotate the current &page only"
msgstr "Annoter la &feuille active uniquement"
#: eeschema/annotate_dialog.cpp:174
msgid "&Reset existing annotation"
msgstr "&Supprimer l'annotation existante"
#: eeschema/annotate_dialog.cpp:179
msgid "Order"
msgstr "Ordre"
#: eeschema/annotate_dialog.cpp:187
msgid "Sort Components by &Y Position"
msgstr "Trier les Composants par &Y Position"
#: eeschema/annotate_dialog.cpp:191
msgid "Sort Components by &Value"
msgstr "Trier les Composants par &Valeur"
#: eeschema/annotate_dialog.cpp:202
msgid "Clear Annotation"
msgstr "Suppression Annotation"
#: eeschema/annotate_dialog.cpp:206
msgid "Annotation"
msgstr "Annotation"
#: eeschema/annotate_dialog.cpp:225
msgid "Clear and annotate all of the components "
msgstr "Reinitialisation et réannotation de tous les composants "
#: eeschema/annotate_dialog.cpp:227
msgid "Annotate only the unannotated components "
msgstr "Annoter seulement les composants non déjà annotés "
#: eeschema/annotate_dialog.cpp:229
msgid "on the entire schematic?"
msgstr "pour la schematique complète?"
#: eeschema/annotate_dialog.cpp:231
msgid "on the current sheet?"
msgstr "pourr la feuille courante?"
#: eeschema/annotate_dialog.cpp:233
msgid ""
"\n"
"\n"
"This operation will change the current annotation and cannot be undone."
msgstr ""
"\n"
"\n"
"Cette opération changera l'annotation actuelle et ne pourra être annulée."
#: eeschema/annotate_dialog.cpp:253
msgid "Clear the existing annotation for "
msgstr "Supprimer l'annotation existante pour "
#: eeschema/annotate_dialog.cpp:255
msgid "the entire schematic?"
msgstr "la schématique entière?"
#: eeschema/annotate_dialog.cpp:257
msgid "the current sheet?"
msgstr "La feuille courante?"
#: eeschema/annotate_dialog.cpp:259
msgid ""
"\n"
"\n"
"This operation will clear the existing annotation and cannot be undone."
msgstr ""
"\n"
"\n"
"Cette opération supprimera l'annotation existante et ne peut être annulée."
#: eeschema/files-io.cpp:112
#: eeschema/files-io.cpp:112
msgid "Clear Schematic Hierarchy (modified!)?"
msgid "Clear Schematic Hierarchy (modified!)?"
msgstr "Effacer la hiérarchie schématique (modifiée!)?"
msgstr "Effacer la hiérarchie schématique (modifiée!)?"
...
@@ -7019,90 +7103,6 @@ msgstr "Emetteur ouv."
...
@@ -7019,90 +7103,6 @@ msgstr "Emetteur ouv."
msgid "Electrical Type:"
msgid "Electrical Type:"
msgstr "Type électrique:"
msgstr "Type électrique:"
#: eeschema/annotate_dialog.cpp:157
msgid "Scope"
msgstr "Sélection"
#: eeschema/annotate_dialog.cpp:163
msgid "Annotate the &entire schematic"
msgstr "Annot&er la schématique complète"
#: eeschema/annotate_dialog.cpp:167
msgid "Annotate the current &page only"
msgstr "Annoter la &feuille active uniquement"
#: eeschema/annotate_dialog.cpp:170
msgid "&Reset existing annotation"
msgstr "&Supprimer l'annotation existante"
#: eeschema/annotate_dialog.cpp:188
msgid "Order"
msgstr "Ordre"
#: eeschema/annotate_dialog.cpp:194
msgid "Sort components by p&osition"
msgstr "Trier les composants par p&osition"
#: eeschema/annotate_dialog.cpp:200
msgid "Sort components by &value"
msgstr "Trier les Composants par &valeur"
#: eeschema/annotate_dialog.cpp:215
msgid "Clear Annotation"
msgstr "Suppression Annotation"
#: eeschema/annotate_dialog.cpp:216
msgid "Annotation"
msgstr "Annotation"
#: eeschema/annotate_dialog.cpp:264
msgid "Clear the existing annotation for "
msgstr "Supprimer l'annotation existante pour "
#: eeschema/annotate_dialog.cpp:266
msgid "the entire schematic?"
msgstr "la schématique entière?"
#: eeschema/annotate_dialog.cpp:268
msgid "the current sheet?"
msgstr "La feuille courante?"
#: eeschema/annotate_dialog.cpp:270
msgid ""
"\n"
"\n"
"This operation will clear the existing annotation and cannot be undone."
msgstr ""
"\n"
"\n"
"Cette opération supprimera l'annotation existante et ne peut être annulée."
#: eeschema/annotate_dialog.cpp:286
msgid "Clear and annotate all of the components "
msgstr "Reinitialisation et réannotation de tous les composants "
#: eeschema/annotate_dialog.cpp:288
msgid "Annotate only the unannotated components "
msgstr "Annoter seulement les composants non déjà annotés "
#: eeschema/annotate_dialog.cpp:290
msgid "on the entire schematic?"
msgstr "pour la schematique complète?"
#: eeschema/annotate_dialog.cpp:292
msgid "on the current sheet?"
msgstr "pourr la feuille courante?"
#: eeschema/annotate_dialog.cpp:294
msgid ""
"\n"
"\n"
"This operation will change the current annotation and cannot be undone."
msgstr ""
"\n"
"\n"
"Cette opération changera l'annotation actuelle et ne pourra être annulée."
#: eeschema/dialog_build_BOM.cpp:248
#: eeschema/dialog_build_BOM.cpp:248
msgid "List items:"
msgid "List items:"
msgstr " Liste éléments: "
msgstr " Liste éléments: "
...
@@ -9999,9 +9999,9 @@ msgstr "Liste du Matériel"
...
@@ -9999,9 +9999,9 @@ msgstr "Liste du Matériel"
msgid "Component properties"
msgid "Component properties"
msgstr "Propriétés du composant"
msgstr "Propriétés du composant"
#: eeschema/annotate_dialog.h:4
7
#: eeschema/annotate_dialog.h:4
9
msgid "
Annotate
"
msgid "
EESchema Annotation
"
msgstr "Annotation"
msgstr "Annotation
des composants
"
#: eeschema/sheet.h:47
#: eeschema/sheet.h:47
msgid "Sheet properties"
msgid "Sheet properties"
...
@@ -10175,6 +10175,8 @@ msgstr "Créer Fichier SVG"
...
@@ -10175,6 +10175,8 @@ msgstr "Créer Fichier SVG"
msgid "Print"
msgid "Print"
msgstr "Imprimer"
msgstr "Imprimer"
#~ msgid "Annotate"
#~ msgstr "Annotation"
#~ msgid "Zoom Block (Midd butt drag)"
#~ msgid "Zoom Block (Midd butt drag)"
#~ msgstr "Zoom Bloc (drag+bouton milieu)"
#~ msgstr "Zoom Bloc (drag+bouton milieu)"
#~ msgid "Win. Zoom (Midd butt drag mouse)"
#~ msgid "Win. Zoom (Midd butt drag mouse)"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment