From 95706c9b635bf1e6164afe023ef289fab55b9c28 Mon Sep 17 00:00:00 2001 From: mbirth Date: Mon, 31 Jan 2005 17:24:29 +0000 Subject: [PATCH] modified JUninstaller.java + additional security question when trying to delete a single file from log details view (if file was only modified by installation, not created) modified MyQuestions.java x Fixed bug in word wrapping. Now paragraphs are also preserved. --- JUninstaller.java | 31 ++++++++++++++++++++++++------- MyQuestions.java | 14 +++++++++++++- 2 files changed, 37 insertions(+), 8 deletions(-) diff --git a/JUninstaller.java b/JUninstaller.java index 52c402a..9e865ed 100644 --- a/JUninstaller.java +++ b/JUninstaller.java @@ -225,16 +225,33 @@ public class JUninstaller extends Frame implements ActionListener { } else if (ae.getSource().equals(btDelFile)) { // Delete file (log-details) String selItem = ltView.getSelectedItem(); String selFile = ltApps.getSelectedItem(); + char status = selItem.charAt(0); // for addition question later if (selItem != null && selFile != null) { selItem = selItem.substring(selItem.indexOf(" ")+1); - if (MQ.yesnoBox("Are you sure?", "Do you really want to delete this file?\n\n"+selItem+"\n\nDeleting the wrong file may render your phone unusable!") == MQ.YES) { - File flDelMe = new File(selItem); - if (flDelMe.delete()) { - MIP.infoPrint("Deleted."); - } else { - MIP.infoPrint("Error!"); + File flDelMe = new File(selItem); + if (flDelMe.exists()) { + if (MQ.yesnoBox("Are you sure?", "Do you really want to delete this file?\n\n"+selItem+"\n\nDeleting the wrong file may render your phone unusable!") == MQ.YES) { + + boolean doIt = false; + if (status == '*') { + doIt = (MQ.yesnoBox("Are you really sure?", "This file has already been there before the logged installation occurred.\nDeleting it may harm your phone.\n\nDo you still want to delete it?") == MQ.YES); + } else { + doIt = true; + } + + if (doIt) { + if (flDelMe.delete()) { + MIP.infoPrint("Deleted."); + } else { + MIP.infoPrint("Error!"); + } + updateDetList(selFile+DATAEXT, selItem); + } else { + MIP.infoPrint("Deletion aborted."); + } } - updateDetList(selFile+DATAEXT, selItem); + } else { + MIP.infoPrint("File does not exist!"); } } else { MIP.infoPrint("Select one entry!"); diff --git a/MyQuestions.java b/MyQuestions.java index d9349fa..80cfc3c 100644 --- a/MyQuestions.java +++ b/MyQuestions.java @@ -83,9 +83,21 @@ public class MyQuestions implements ActionListener { // make each line below maxWidth as long as there is a whitespace in it int idx; FontMetrics fm = di.getFontMetrics(ftDialog); + boolean addedLine; for (int i=0;i maxWidth && txts[i].indexOf(" ") != -1) { + if (!addedLine) { + tmps = new String[txts.length+1]; + for (int j=0;j=txts.length) { tmps = new String[txts.length+1]; @@ -97,7 +109,7 @@ public class MyQuestions implements ActionListener { } // wrap word to next line idx = txts[i].lastIndexOf(" "); - txts[i+1] = txts[i].substring(idx) + txts[i+1]; + txts[i+1] = txts[i].substring(idx+1) + " " + txts[i+1]; txts[i] = txts[i].substring(0, idx); } }