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
dbd72122
Commit
dbd72122
authored
Dec 09, 2013
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dialog perfection does not come easily.
parent
bb872dd5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
dialog_lib_new_component.fbp
eeschema/dialogs/dialog_lib_new_component.fbp
+4
-4
dialog_lib_new_component_base.cpp
eeschema/dialogs/dialog_lib_new_component_base.cpp
+4
-1
No files found.
eeschema/dialogs/dialog_lib_new_component.fbp
View file @
dbd72122
...
...
@@ -516,7 +516,7 @@
<property
name=
"validator_style"
>
wxFILTER_NONE
</property>
<property
name=
"validator_type"
>
wxDefaultValidator
</property>
<property
name=
"validator_variable"
></property>
<property
name=
"value"
></property>
<property
name=
"value"
>
U
</property>
<property
name=
"window_extra_style"
></property>
<property
name=
"window_name"
></property>
<property
name=
"window_style"
></property>
...
...
@@ -1315,7 +1315,7 @@
<property
name=
"caption"
></property>
<property
name=
"caption_visible"
>
1
</property>
<property
name=
"center_pane"
>
0
</property>
<property
name=
"checked"
>
0
</property>
<property
name=
"checked"
>
1
</property>
<property
name=
"close_button"
>
1
</property>
<property
name=
"context_help"
></property>
<property
name=
"context_menu"
>
1
</property>
...
...
@@ -1403,7 +1403,7 @@
<property
name=
"caption"
></property>
<property
name=
"caption_visible"
>
1
</property>
<property
name=
"center_pane"
>
0
</property>
<property
name=
"checked"
>
0
</property>
<property
name=
"checked"
>
1
</property>
<property
name=
"close_button"
>
1
</property>
<property
name=
"context_help"
></property>
<property
name=
"context_menu"
>
1
</property>
...
...
@@ -1491,7 +1491,7 @@
<property
name=
"caption"
></property>
<property
name=
"caption_visible"
>
1
</property>
<property
name=
"center_pane"
>
0
</property>
<property
name=
"checked"
>
0
</property>
<property
name=
"checked"
>
1
</property>
<property
name=
"close_button"
>
1
</property>
<property
name=
"context_help"
></property>
<property
name=
"context_menu"
>
1
</property>
...
...
eeschema/dialogs/dialog_lib_new_component_base.cpp
View file @
dbd72122
...
...
@@ -45,7 +45,7 @@ DIALOG_LIB_NEW_COMPONENT_BASE::DIALOG_LIB_NEW_COMPONENT_BASE( wxWindow* parent,
m_staticText9
->
Wrap
(
-
1
);
fgSizer31
->
Add
(
m_staticText9
,
0
,
wxALL
,
5
);
m_textReference
=
new
wxTextCtrl
(
this
,
wxID_ANY
,
wxEmptyString
,
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_textReference
=
new
wxTextCtrl
(
this
,
wxID_ANY
,
_
(
"U"
)
,
wxDefaultPosition
,
wxDefaultSize
,
0
);
fgSizer31
->
Add
(
m_textReference
,
0
,
wxALL
|
wxEXPAND
,
5
);
m_staticText10
=
new
wxStaticText
(
this
,
wxID_ANY
,
_
(
"Number of units per package:"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
...
...
@@ -107,12 +107,15 @@ DIALOG_LIB_NEW_COMPONENT_BASE::DIALOG_LIB_NEW_COMPONENT_BASE( wxWindow* parent,
bSizer19
=
new
wxBoxSizer
(
wxVERTICAL
);
m_checkShowPinNumber
=
new
wxCheckBox
(
this
,
wxID_ANY
,
_
(
"Show pin number text"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_checkShowPinNumber
->
SetValue
(
true
);
bSizer19
->
Add
(
m_checkShowPinNumber
,
0
,
wxALL
,
5
);
m_checkShowPinName
=
new
wxCheckBox
(
this
,
wxID_ANY
,
_
(
"Show pin name text"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_checkShowPinName
->
SetValue
(
true
);
bSizer19
->
Add
(
m_checkShowPinName
,
0
,
wxALL
,
5
);
m_checkShowPinNameInside
=
new
wxCheckBox
(
this
,
wxID_ANY
,
_
(
"Pin name inside"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_checkShowPinNameInside
->
SetValue
(
true
);
bSizer19
->
Add
(
m_checkShowPinNameInside
,
0
,
wxALL
,
5
);
...
...
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