Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Education
KmPlot
Commits
cddfcf32
Commit
cddfcf32
authored
Mar 24, 2006
by
David Saxton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ported coords config page to Qt4.
svn path=/trunk/KDE/kdeedu/kmplot/; revision=522192
parent
5c40c3f2
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
780 additions
and
777 deletions
+780
-777
kmplot/coordsconfigdialog.cpp
kmplot/coordsconfigdialog.cpp
+1
-2
kmplot/coordsconfigdialog.h
kmplot/coordsconfigdialog.h
+9
-2
kmplot/settingspagecoords.ui
kmplot/settingspagecoords.ui
+770
-773
No files found.
kmplot/coordsconfigdialog.cpp
View file @
cddfcf32
...
...
@@ -29,13 +29,12 @@
#include <qradiobutton.h>
#include "settings.h"
#include "settingspagecoords.h"
#include "coordsconfigdialog.h"
CoordsConfigDialog
::
CoordsConfigDialog
(
XParser
*
p
,
QWidget
*
parent
)
:
KConfigDialog
(
parent
,
"coords"
,
Settings
::
self
()),
m_parser
(
p
)
{
configAxesDialog
=
new
SettingsPageCoords
(
0
,
"coordsSettings"
);
configAxesDialog
=
new
SettingsPageCoords
(
0
);
addPage
(
configAxesDialog
,
i18n
(
"Coords"
),
"coords"
,
i18n
(
"Edit Coordinate System"
)
);
setHelp
(
"axes-config"
);
}
...
...
kmplot/coordsconfigdialog.h
View file @
cddfcf32
...
...
@@ -28,9 +28,16 @@
#include <kconfigdialog.h>
#include "settingspagecoords.h"
#include "xparser.h"
class
SettingsPageCoords
;
class
SettingsPageCoords
:
public
QWidget
,
public
Ui
::
SettingsPageCoords
{
public:
SettingsPageCoords
(
QWidget
*
parent
=
0
)
:
QWidget
(
parent
)
{
setupUi
(
this
);
}
};
/**
@author Fredrik Edemar
...
...
@@ -50,7 +57,7 @@ class CoordsConfigDialog : public KConfigDialog
bool
evalY
();
Parser
*
m_parser
;
SettingsPageCoords
*
configAxesDialog
;
SettingsPageCoords
*
configAxesDialog
;
};
#endif
kmplot/settingspagecoords.ui
View file @
cddfcf32
This diff is collapsed.
Click to expand it.
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