Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
magicseteditor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
magicseteditor
Commits
11181f53
Commit
11181f53
authored
Dec 22, 2006
by
twanvl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed rotation bug
parent
a0dbc09b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
21 additions
and
8 deletions
+21
-8
src/data/field/choice.cpp
src/data/field/choice.cpp
+1
-1
src/data/field/choice.hpp
src/data/field/choice.hpp
+2
-1
src/gui/control/package_list.cpp
src/gui/control/package_list.cpp
+4
-2
src/gui/control/package_list.hpp
src/gui/control/package_list.hpp
+1
-1
src/gui/value/text.cpp
src/gui/value/text.cpp
+2
-2
src/util/rotation.cpp
src/util/rotation.cpp
+8
-0
src/util/rotation.hpp
src/util/rotation.hpp
+3
-1
No files found.
src/data/field/choice.cpp
View file @
11181f53
...
...
@@ -208,7 +208,7 @@ IMPLEMENT_REFLECTION(ChoiceStyle) {
REFLECT
(
combine
);
REFLECT
(
alignment
);
REFLECT
(
colors_card_list
);
//
REFLECT(font);
REFLECT
(
font
);
REFLECT
(
choice_images
);
// if (tag.reading() && choice_colors.empty())
REFLECT
(
choice_colors
);
...
...
src/data/field/choice.hpp
View file @
11181f53
...
...
@@ -12,6 +12,7 @@
#include <util/prec.hpp>
#include <util/defaultable.hpp>
#include <data/field.hpp>
#include <data/font.hpp>
#include <gfx/gfx.hpp> // for ImageCombine
#include <script/scriptable.hpp>
#include <script/image.hpp>
...
...
@@ -117,7 +118,7 @@ class ChoiceStyle : public Style {
ChoicePopupStyle
popup_style
;
///< Style of popups/menus
ChoiceRenderStyle
render_style
;
///< Style of rendering
// FontInfo
font; ///< Font for drawing text (when RENDER_TEXT)
Font
font
;
///< Font for drawing text (when RENDER_TEXT)
map
<
String
,
ScriptableImage
>
choice_images
;
///< Images for the various choices (when RENDER_IMAGE)
map
<
String
,
Color
>
choice_colors
;
///< Colors for the various choices (when color_cardlist)
bool
colors_card_list
;
///< Does this field determine colors of the rows in the card list?
...
...
src/gui/control/package_list.cpp
View file @
11181f53
...
...
@@ -82,12 +82,14 @@ void PackageList::clear() {
update
();
}
void
PackageList
::
select
(
const
String
&
name
)
{
void
PackageList
::
select
(
const
String
&
name
,
bool
send_event
)
{
for
(
vector
<
PackageData
>::
const_iterator
it
=
packages
.
begin
()
;
it
!=
packages
.
end
()
;
++
it
)
{
if
(
it
->
package
->
name
()
==
name
)
{
selection
=
it
-
packages
.
begin
();
update
();
sendEvent
(
EVENT_GALLERY_SELECT
);
if
(
send_event
)
{
sendEvent
(
EVENT_GALLERY_SELECT
);
}
return
;
}
}
...
...
src/gui/control/package_list.hpp
View file @
11181f53
...
...
@@ -44,7 +44,7 @@ class PackageList : public GalleryList {
}
/// Select the package with the given name, if it is not found, selects nothing
void
select
(
const
String
&
name
);
void
select
(
const
String
&
name
,
bool
send_event
=
true
);
protected:
/// Return how many items there are in the list
...
...
src/gui/value/text.cpp
View file @
11181f53
...
...
@@ -402,8 +402,8 @@ void TextValueEditor::showCaret() {
cursor
=
rot
.
tr
(
cursor
);
// set size
wxSize
size
=
cursor
.
size
();
size
.
SetWidth
(
max
(
1
,
size
.
GetWidth
())
);
size
.
SetHeight
(
max
(
1
,
size
.
GetHeight
())
);
if
(
size
.
GetWidth
()
==
0
)
size
.
SetWidth
(
1
);
if
(
size
.
GetHeight
()
==
0
)
size
.
SetHeight
(
1
);
// resize, move, show
if
(
size
!=
caret
->
GetSize
())
{
caret
->
SetSize
(
size
);
...
...
src/util/rotation.cpp
View file @
11181f53
...
...
@@ -80,6 +80,14 @@ RealPoint Rotation::trInv(const RealPoint& p) const {
}
}
RealSize
Rotation
::
trInvNoNeg
(
const
RealSize
&
s
)
const
{
if
(
sideways
())
{
return
RealSize
(
s
.
height
,
s
.
width
)
/
zoom
;
}
else
{
return
RealSize
(
s
.
width
,
s
.
height
)
/
zoom
;
}
}
// ----------------------------------------------------------------------------- : Rotater
Rotater
::
Rotater
(
Rotation
&
rot
,
const
Rotation
&
by
)
...
...
src/util/rotation.hpp
View file @
11181f53
...
...
@@ -31,7 +31,7 @@ class Rotation {
/// Change the angle
void
setAngle
(
int
a
);
/// The internal size
inline
RealSize
getInternalSize
()
const
{
return
trInv
(
size
);
}
inline
RealSize
getInternalSize
()
const
{
return
trInv
NoNeg
(
size
);
}
/// The intarnal rectangle (origin at (0,0))
inline
RealRect
getInternalRect
()
const
{
return
RealRect
(
RealPoint
(
0
,
0
),
getInternalSize
());
}
/// The external rectangle (as passed to the constructor) == trNoNeg(getInternalRect())
...
...
@@ -64,6 +64,8 @@ class Rotation {
RealPoint
trInv
(
const
RealPoint
&
p
)
const
;
/// Translate a size back to internal coordinates
RealSize
trInv
(
const
RealSize
&
s
)
const
;
/// Translate a size back to internal coordinates, that are not negative
RealSize
trInvNoNeg
(
const
RealSize
&
s
)
const
;
protected:
int
angle
;
///< The angle of rotation in degrees (counterclockwise)
...
...
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