# # # patch "IDEAS" # from [fcebe4c5640e92eef578ed3a0292f746ddb42cb0] # to [eccaa8af610c20e7f05e398610659652e104ac4b] # # patch "guitone/res/forms/preferences.ui" # from [50dcda14fc2c4f5147800b73b015bf988efd52f4] # to [17a73a0cb32f54a7cc03eec748216e35acf659b9] # # patch "guitone/src/view/dialogs/About.cpp" # from [a4c3715c5b16b73a41f8d4b251e351efa83f7e5e] # to [2af16dc781bf4722529b705c46063263cfabb08f] # # patch "guitone/src/view/dialogs/Preferences.cpp" # from [8b5eb4b83c884cace024a98bd403bb665d2a30d9] # to [90a2e26819212133a092fd13d08674cf9e5865c6] # ============================================================ --- IDEAS fcebe4c5640e92eef578ed3a0292f746ddb42cb0 +++ IDEAS eccaa8af610c20e7f05e398610659652e104ac4b @@ -1,8 +1,11 @@ mid- to longterm, for a list of definite This file lists some ideas what could be improved / implemented in guitone mid- to longterm, for a list of definite changes see TODO: * allow more than one single open workspace at the same time (will be hard...) * make changed items view configurable (currently they're just bold) * integrate support to make guitone a kpart module under KDE -* add functionality which is currently missing from monotone (log, read, ci, up, etc.) +* add functionality which is currently missing from monotone (commit, ...) +* use QDialogButtonBox to place the ok/abort buttons in the correct order + based on the platform) * add unit tests for the internals + ============================================================ --- guitone/res/forms/preferences.ui 50dcda14fc2c4f5147800b73b015bf988efd52f4 +++ guitone/res/forms/preferences.ui 17a73a0cb32f54a7cc03eec748216e35acf659b9 @@ -5,8 +5,8 @@ 0 0 - 372 - 248 + 453 + 278 @@ -19,14 +19,14 @@ - 372 - 248 + 0 + 278 16777215 - 248 + 278 ============================================================ --- guitone/src/view/dialogs/About.cpp a4c3715c5b16b73a41f8d4b251e351efa83f7e5e +++ guitone/src/view/dialogs/About.cpp 2af16dc781bf4722529b705c46063263cfabb08f @@ -29,7 +29,7 @@ About::About(QWidget* parent) : Dialog(p Dialog::init(); // OSX sheet-alike dialog - setWindowFlags(windowFlags() | Qt::Sheet); + setWindowFlags(Qt::Sheet); aboutText->setText( tr("Version %1.%2").arg(VersionMajor).arg(VersionMinor) + ============================================================ --- guitone/src/view/dialogs/Preferences.cpp 8b5eb4b83c884cace024a98bd403bb665d2a30d9 +++ guitone/src/view/dialogs/Preferences.cpp 90a2e26819212133a092fd13d08674cf9e5865c6 @@ -33,7 +33,7 @@ Preferences::Preferences(QWidget* parent Dialog::init(); // OSX sheet-alike dialog - setWindowFlags(windowFlags() | Qt::Sheet); + setWindowFlags(Qt::Sheet); mtnExecutablePath->setText(Settings::getMtnBinaryPath());