* [QGIT PATCH] Rework the commit confirmation box a bit
@ 2008-10-06 9:11 Abdelrazak Younes
2008-10-06 19:03 ` Marco Costalba
0 siblings, 1 reply; 2+ messages in thread
From: Abdelrazak Younes @ 2008-10-06 9:11 UTC (permalink / raw)
To: Git Mailing List
The problem was that the dialog was too big for my whenever too many files
were changed. Now, the list of changed files is only shown whenever they are
less than 20; otherwise it is shown in the detailed text accessible though
the 'Show Detail' button.
---
src/commitimpl.cpp | 25 ++++++++++++++++++++-----
1 files changed, 20 insertions(+), 5 deletions(-)
diff --git a/src/commitimpl.cpp b/src/commitimpl.cpp
index 1540947..def5209 100644
--- a/src/commitimpl.cpp
+++ b/src/commitimpl.cpp
@@ -236,17 +236,32 @@ bool CommitImpl::checkConfirm(SCRef msg, SCRef
patchName, SCList selFiles, bool
(git->isStGITStack() ? "refresh top patch with" :
"amend last commit with") :
(git->isStGITStack() ? "create a new patch with" : "commit");
- QString text("Do you want to " + whatToDo + " the following
file(s)?\n\n" +
- selFiles.join("\n") + "\n\nwith the message:\n\n");
+ QString text("Do you want to " + whatToDo);
+
+ bool const fullList = selFiles.size() < 20;
+ if (fullList) {
+ text.append(" the following file(s)?\n\n" + selFiles.join("\n")
+ + "\n\nwith the message:\n\n");
+ } else {
+ text.append(" those " + QString::number(selFiles.size())
+ + " files the with the message:\n\n");
+ }
+
text.append(msg);
if (git->isStGITStack())
text.append("\n\nAnd patch name: " + patchName);
QTextCodec::setCodecForCStrings(tc);
- int but = QMessageBox::question(this, "Commit changes - QGit",
- text, "&Yes", "&No", QString(), 0, 1);
- return (but != 1);
+ QMessageBox msgBox(this);
+ msgBox.setWindowTitle("Commit changes - QGit");
+ msgBox.setText(text);
+ if (!fullList)
+ msgBox.setDetailedText(selFiles.join("\n"));
+ msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
+ msgBox.setDefaultButton(QMessageBox::Yes);
+
+ return msgBox.exec() != QMessageBox::No;
}
void CommitImpl::pushButtonSettings_clicked() {
--
1.6.0.2.1172.ga5ed0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-10-06 19:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-06 9:11 [QGIT PATCH] Rework the commit confirmation box a bit Abdelrazak Younes
2008-10-06 19:03 ` Marco Costalba
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).