1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
|
/***********************************************************************
*
* Kfwin.cpp
*
**********************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <pwd.h>
#include <grp.h>
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#include <sys/stat.h>
#include <time.h>
#include <qtextstream.h>
#include <qfileinfo.h>
#include <qdir.h>
#include <qclipboard.h>
#include <qpixmap.h>
#include <qdragobject.h>
#include <kfiledialog.h>
#include <klocale.h>
#include <kapp.h>
#include <krun.h>
#include <kprocess.h>
#include <kpropsdlg.h>
#include <kstddirs.h>
#include <kmessagebox.h>
#include <kmimetype.h>
#include <kglobal.h>
#include <kopenwith.h>
#include <kpopupmenu.h>
#include <kio/netaccess.h>
#include <kurl.h>
#include <kurldrag.h>
#include "kfwin.h"
#include "kfwin.moc"
template class QList<KfFileLVI>;
// Permission strings
static const char* perm[4] = {
I18N_NOOP( "Read-write" ),
I18N_NOOP( "Read-only" ),
I18N_NOOP( "Write-only" ),
I18N_NOOP( "Inaccessible" ) };
#define RW 0
#define RO 1
#define WO 2
#define NA 3
KfFileLVI::KfFileLVI(KListView* lv, const KFileItem &item)
: QListViewItem(lv),
fileitem(item)
{
fileInfo = new QFileInfo(item.url().path());
QString size = KGlobal::locale()->formatNumber(item.size(), 0);
QDateTime dt;
dt.setTime_t(item.time(KIO::UDS_MODIFICATION_TIME));
QString date = KGlobal::locale()->formatDateTime(dt);
int perm_index;
if(fileInfo->isReadable())
perm_index = fileInfo->isWritable() ? RW : RO;
else
perm_index = fileInfo->isWritable() ? WO : NA;
// Fill the item with data
setText(0, item.url().fileName(false));
setText(1, item.url().directory(false));
setText(2, size);
setText(3, date);
setText(4, i18n(perm[perm_index]));
// put the icon into the leftmost column
setPixmap(0, item.pixmap(16));
}
KfFileLVI::~KfFileLVI()
{
delete fileInfo;
}
QString KfFileLVI::key(int column, bool) const
{
switch (column) {
case 2:
// Returns date in bytes. Used for sorting
return QString().sprintf("%10d", fileInfo->size());
case 3:
// Returns time in secs from 1/1/1970. Used for sorting
return QString().sprintf("%10ld", fileitem.time(KIO::UDS_MODIFICATION_TIME));
}
return text(column);
}
KfindWindow::KfindWindow( QWidget *parent, const char *name )
: KListView( parent, name )
{
setSelectionMode( QListView::Extended );
setShowSortIndicator( TRUE );
addColumn(i18n("Name"));
addColumn(i18n("In directory"));
addColumn(i18n("Size"));
setColumnAlignment(2, AlignRight);
addColumn(i18n("Modified"));
setColumnAlignment(3, AlignRight);
addColumn(i18n("Permissions"));
setColumnAlignment(4, AlignRight);
// Disable autoresize for all columns
// Resizing is done by resetColumns() function
for (int i = 0; i < 5; i++)
setColumnWidthMode(i, Manual);
resetColumns(TRUE);
connect( this, SIGNAL(selectionChanged()),
this, SLOT( selectionHasChanged() ));
connect(this, SIGNAL(contextMenu(KListView *, QListViewItem*,const QPoint&)),
this, SLOT(slotContextMenu(KListView *,QListViewItem*,const QPoint&)));
setDragEnabled(true);
}
void KfindWindow::beginSearch()
{
haveSelection = false;
clear();
}
void KfindWindow::endSearch()
{
}
void KfindWindow::insertItem(const KFileItem &item)
{
new KfFileLVI(this, item);
}
// copy to clipboard aka X11 selection
void KfindWindow::copySelection()
{
QDragObject *drag_obj = dragObject();
if (drag_obj)
{
QClipboard *cb = kapp->clipboard();
cb->setData(drag_obj);
}
}
void KfindWindow::saveResults()
{
QListViewItem *item;
KFileDialog *dlg = new KFileDialog(QString::null, QString::null, this,
"filedialog", true);
dlg->setCaption(i18n("Save Results As"));
KMimeType::List list;
list.append(KMimeType::mimeType("text/plain"));
list.append(KMimeType::mimeType("text/html"));
dlg->setFilterMimeType(i18n("Save as:"), list, KMimeType::mimeType("text/plain"));
dlg->exec();
KURL u = dlg->selectedURL();
KMimeType::Ptr mimeType = dlg->currentFilterMimeType();
delete dlg;
if (u.isMalformed() || !u.isLocalFile())
return;
QString filename = u.path();
QFile file(filename);
if ( !file.open(IO_WriteOnly) )
KMessageBox::error(parentWidget(),
i18n("It wasn't possible to save results!"));
else {
QTextStream stream( &file );
stream.setEncoding( QTextStream::Locale );
if ( mimeType->name() == "text/html") {
stream << QString::fromLatin1("<HTML><HEAD>\n"
"<!DOCTYPE %1>\n"
"<TITLE>%2</TITLE></HEAD>\n"
"<BODY><H1>%3</H1>"
"<DL><p>\n")
.arg(i18n("KFind Results File"))
.arg(i18n("KFind Results File"))
.arg(i18n("KFind Results File"));
item = firstChild();
while(item != NULL)
{
QString path=((KfFileLVI*)item)->fileitem.url().url();
QString pretty=((KfFileLVI*)item)->fileitem.url().prettyURL();
stream << QString::fromLatin1("<DT><A HREF=\"%1\">%2</A>\n")
.arg(path).arg(pretty);
item = item->nextSibling();
}
stream << QString::fromLatin1("</DL><P></BODY></HTML>\n");
}
else {
item = firstChild();
while(item != NULL)
{
QString path=((KfFileLVI*)item)->fileitem.url().url();
stream << path << endl;
item = item->nextSibling();
}
}
file.close();
KMessageBox::information(parentWidget(),
i18n("Results were saved to file\n")+
filename);
}
}
// This function is called when selection is changed (both selected/deselected)
// It notifies the parent about selection status and enables/disables menubar
void KfindWindow::selectionHasChanged()
{
emit resultSelected(true);
QListViewItem *item = firstChild();
while(item != 0L)
{
if(isSelected(item)) {
emit resultSelected( true );
haveSelection = true;
return;
}
item = item->nextSibling();
}
haveSelection = false;
emit resultSelected(false);
}
void KfindWindow::deleteFiles()
{
QString tmp = i18n("Do you really want to delete selected file(s)?");
if (KMessageBox::questionYesNo(parentWidget(), tmp) == KMessageBox::No)
return;
// Iterate on all selected elements
QList<QListViewItem> selected = selectedItems();
for ( uint i = 0; i < selected.count(); i++ ) {
KfFileLVI *item = (KfFileLVI *) selected.at(i);
KFileItem file = item->fileitem;
KIO::NetAccess::del(file.url());
}
selected.setAutoDelete(true);
}
void KfindWindow::fileProperties()
{
// This dialog must be modal because it parent dialog is modal as well.
// Non-modal property dialog will hide behind the main window
(void) new KPropertiesDialog( &((KfFileLVI *)currentItem())->fileitem, this,
"propDialog", true);
}
void KfindWindow::openFolder()
{
KFileItem fileitem = ((KfFileLVI *)currentItem())->fileitem;
KURL url = fileitem.url();
url.setFileName(QString::null);
(void) new KRun(url);
}
void KfindWindow::openBinding()
{
((KfFileLVI*)currentItem())->fileitem.run();
}
// Resizes KListView to occupy all visible space
void KfindWindow::resizeEvent(QResizeEvent *e)
{
KListView::resizeEvent(e);
resetColumns(FALSE);
clipper()->repaint();
}
QDragObject * KfindWindow::dragObject() const
{
KURL::List uris;
QList<QListViewItem> selected = selectedItems();
// create a list of URIs from selection
for ( uint i = 0; i < selected.count(); i++ )
{
KfFileLVI *item = (KfFileLVI *) selected.at( i );
if (item)
{
uris.append( item->fileitem.url() );
}
}
if ( uris.count() <= 0 )
return 0;
QUriDrag *ud = KURLDrag::newDrag( uris, (QWidget *) this, "kfind uridrag" );
const QPixmap *pix = currentItem()->pixmap(0);
if ( pix && !pix->isNull() )
ud->setPixmap( *pix );
return ud;
}
void KfindWindow::resetColumns(bool init)
{
if (init)
{
QFontMetrics fm = fontMetrics();
setColumnWidth(2, QMAX(fm.width(columnText(2)), fm.width("0000000")) + 15);
QString sampleDate =
KGlobal::locale()->formatDateTime(QDateTime::currentDateTime());
setColumnWidth(3, QMAX(fm.width(columnText(3)), fm.width(sampleDate)) + 15);
setColumnWidth(4, QMAX(fm.width(columnText(4)), fm.width(i18n(perm[RO]))) + 15);
}
int free_space = visibleWidth() -
columnWidth(2) - columnWidth(3) - columnWidth(4);
int name_w = QMIN((int)(free_space*0.5), 150);
int dir_w = free_space - name_w;
setColumnWidth(0, name_w);
setColumnWidth(1, dir_w);
}
void KfindWindow::slotContextMenu(KListView *,QListViewItem *item,const QPoint&p)
{
if (!item) return;
int count = selectedItems().count();
KPopupMenu *menu = 0;
if (count == 0)
{
return;
}
else if (count == 1)
{
menu = new KPopupMenu(item->text(0), this);
menu->insertItem(i18n("Copy"), this, SLOT(copySelection()));
menu->insertItem(i18n("Delete"), this, SLOT(deleteFiles()));
menu->insertItem(i18n("Open"), this, SLOT(openBinding()));
menu->insertItem(i18n("Directory..."), this, SLOT(openFolder()));
menu->insertItem(i18n("Properties"), this, SLOT(fileProperties()));
}
else
{
menu = new KPopupMenu(i18n("Selected Files"), this);
menu->insertItem(i18n("Copy"), this, SLOT(copySelection()));
menu->insertItem(i18n("Delete"), this, SLOT(deleteFiles()));
}
menu->popup(p, 1);
}
|