summaryrefslogtreecommitdiff
path: root/core/apps
authorllornkcor <llornkcor>2002-06-29 12:39:00 (UTC)
committer llornkcor <llornkcor>2002-06-29 12:39:00 (UTC)
commit2d3e1d2a51edeebfb6acea960cc4d505b4c72731 (patch) (side-by-side diff)
tree26ac8e2f81ab8f131f217a01544d811dd6a5e881 /core/apps
parentd8508c23608ad28e0b37f26807ee35055fcabe38 (diff)
downloadopie-2d3e1d2a51edeebfb6acea960cc4d505b4c72731.zip
opie-2d3e1d2a51edeebfb6acea960cc4d505b4c72731.tar.gz
opie-2d3e1d2a51edeebfb6acea960cc4d505b4c72731.tar.bz2
convert to ofilesavedialog
Diffstat (limited to 'core/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/fileBrowser.cpp634
-rw-r--r--core/apps/textedit/fileBrowser.h120
-rw-r--r--core/apps/textedit/fileSaver.cpp271
-rw-r--r--core/apps/textedit/fileSaver.h75
-rw-r--r--core/apps/textedit/textedit.cpp21
-rw-r--r--core/apps/textedit/textedit.h4
-rw-r--r--core/apps/textedit/textedit.pro30
7 files changed, 22 insertions, 1133 deletions
diff --git a/core/apps/textedit/fileBrowser.cpp b/core/apps/textedit/fileBrowser.cpp
deleted file mode 100644
index 3798f90..0000000
--- a/core/apps/textedit/fileBrowser.cpp
+++ b/dev/null
@@ -1,634 +0,0 @@
-/****************************************************************************
-** copyright 2001 ljp ljp@llornkcor.com
-** Created: Fri Dec 14 08:16:46 2001
-**
-** This file may be distributed and/or modified under the terms of the
-** GNU General Public License version 2 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file.
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-****************************************************************************/
-#define QTOPIA_INTERNAL_MIMEEXT
-#include "fileBrowser.h"
-//#include "inputDialog.h"
-
-#include <qpe/config.h>
-#include <qpe/resource.h>
-#include <qpe/fileselector.h>
-#include <qpe/qpeapplication.h>
-#include <qpe/menubutton.h>
-#include <qpe/mimetype.h>
-
-#include <qdict.h>
-#include <qwidgetstack.h>
-#include <qlistview.h>
-#include <qcombo.h>
-#include <qpushbutton.h>
-#include <qfile.h>
-#include <qmessagebox.h>
-#include <qlayout.h>
-#include <unistd.h>
-#include <qpopupmenu.h>
-#include <qlineedit.h>
-#include <qstringlist.h>
-
-#include <unistd.h>
-#include <stdlib.h>
-
-static int u_id = 1;
-static int get_unique_id()
-{
- return u_id++;
-}
-
-fileBrowser::fileBrowser( QWidget* parent, const char* name, bool modal, WFlags fl , const QString mimeFilter )
- : QDialog( parent, name, modal, fl )
-{
- if ( !name )
- setName( "fileBrowser" );
- setCaption(tr( name ) );
-
-// getMimeTypes();
-
-// mimeType = mimeFilter;
-// MimeType mt( mimeType);
-
-// if( mt.extension().isEmpty()) {
-
-// QStringList filterList;
-// filterList=QStringList::split(";",mimeFilter,FALSE);
-
-// for ( QStringList::Iterator it = filterList.begin(); it != filterList.end(); ++it ) {
-// printf( "%s \n", (*it).latin1() );
-// }
-
-// filterStr = mimeFilter.right(mimeFilter.length() - mimeFilter.find("/",0,TRUE) - 1);// "*";
-
-// qDebug(filterStr);
-// } else {
- filterStr = "*";//+ mt.extension();
-// qDebug("description "+mt.description());
-// qDebug( "id "+mt.id());
-// qDebug("extension "+mt.extension());
-// }
-// channel = new QCopChannel( "QPE/fileDialog", this );
-// connect( channel, SIGNAL(received(const QCString&, const QByteArray&)),
-// this, SLOT(receive(const QCString&, const QByteArray&)) );
-
- QGridLayout *layout = new QGridLayout( this );
- layout->setSpacing( 4 );
- layout->setMargin( 4 );
-
- dirPathCombo = new QComboBox( FALSE, this, "dirPathCombo" );
- dirPathCombo->setEditable(TRUE);
-
- connect( dirPathCombo, SIGNAL( activated( const QString & ) ),
- this, SLOT( dirPathComboActivated( const QString & ) ) );
-
- connect( dirPathCombo->lineEdit(), SIGNAL( returnPressed( ) ),
- this, SLOT( dirPathEditPressed( ) ) );
-
- dirPathStringList << "/";
-// we can get the storage here
-
- layout->addMultiCellWidget( dirPathCombo, 0, 0, 0, 4 );
-
- cdUpButton = new QPushButton(Resource::loadIconSet("up"),"",this,"cdUpButton");
- cdUpButton ->setMinimumSize( QSize( 20, 20 ) );
- cdUpButton ->setMaximumSize( QSize( 20, 20 ) );
- connect( cdUpButton ,SIGNAL(released()),this,SLOT( upDir()) );
- cdUpButton ->setFlat(TRUE);
- layout->addMultiCellWidget( cdUpButton, 0, 0, 5, 5 );
-
- docButton = new QPushButton(Resource::loadIconSet("DocsIcon"),"",this,"docsButton");
- docButton->setMinimumSize( QSize( 20, 20 ) );
- docButton->setMaximumSize( QSize( 20, 20 ) );
- connect( docButton,SIGNAL(released()),this,SLOT( docButtonPushed()) );
- docButton->setFlat(TRUE);
- layout->addMultiCellWidget( docButton, 0, 0, 6, 6 );
-
- homeButton = new QPushButton( Resource::loadIconSet("home"),"",this,"homeButton");
- homeButton->setMinimumSize( QSize( 20, 20 ) );
- homeButton->setMaximumSize( QSize( 20, 20 ) );
- connect(homeButton,SIGNAL(released()),this,SLOT(homeButtonPushed()) );
- homeButton->setFlat(TRUE);
- layout->addMultiCellWidget( homeButton, 0, 0, 7, 7 );
-
- FileStack = new QWidgetStack( this );
-
- ListView = new QListView( this, "ListView" );
-// ListView->setMinimumSize( QSize( 100, 25 ) );
- ListView->addColumn( tr( "Name" ) );
- ListView->setColumnWidth(0,120);
- ListView->setSorting( 2, FALSE);
- ListView->addColumn( tr( "Size" ) );
- ListView->setColumnWidth(1,-1);
- ListView->addColumn( "Date",-1);
-
- ListView->setColumnWidthMode(0,QListView::Manual);
- ListView->setColumnAlignment(1,QListView::AlignRight);
- ListView->setColumnAlignment(2,QListView::AlignRight);
- ListView->setAllColumnsShowFocus( TRUE );
-
- QPEApplication::setStylusOperation( ListView->viewport(),QPEApplication::RightOnHold);
- connect( ListView, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)),
- this, SLOT( ListPressed(int, QListViewItem *, const QPoint&, int)) );
-
- connect( ListView, SIGNAL( clicked( QListViewItem*)), SLOT(listClicked(QListViewItem *)) );
-
- FileStack->addWidget( ListView, get_unique_id() );
-mimeType="text/plain";
- fileSelector = new FileSelector( mimeType, FileStack, "fileselector" , FALSE, FALSE); //buggy
-// connect( fileSelector, SIGNAL( closeMe() ), this, SLOT( showEditTools() ) );
-// connect( fileSelector, SIGNAL( newSelected( const DocLnk &) ), this, SLOT( newFile( const DocLnk & ) ) );
- connect( fileSelector, SIGNAL( fileSelected( const DocLnk &) ),
- this, SLOT( docOpen( const DocLnk & ) ) );
- layout->addMultiCellWidget( FileStack, 1, 1, 0, 7 );
-
- SelectionCombo = new QComboBox( FALSE, this, "SelectionCombo" );
- SelectionCombo->insertItem( tr( "Documents" ) );
- SelectionCombo->insertItem( tr( "All files" ) );
- SelectionCombo->insertItem( tr( "Hidden files" ) );
-// SelectionCombo->setMaximumWidth(120);
- layout->addMultiCellWidget( SelectionCombo, 2, 2, 0, 3 );
-
- connect( SelectionCombo, SIGNAL( activated( const QString & ) ),
- this, SLOT( selectionChanged( const QString & ) ) );
-
- typemb = new MenuButton(this);
- typemb->setLabel(tr("Type: %1"));
- typemb->setMinimumWidth(110);
- typemb->setFixedHeight(22);
- layout->addMultiCellWidget( typemb, 2, 2, 4, 7 );
- updateMimeTypeMenu() ;
-
- currentDir.setPath(QDir::currentDirPath());
- currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden */| QDir::All);
- currentDir.setNameFilter(filterStr);
-
- populateList();
- move(0,15);
-}
-
-fileBrowser::~fileBrowser()
-{
-}
-
-void fileBrowser::setFileView( int selection )
-{
- SelectionCombo->setCurrentItem( selection );
- selectionChanged( SelectionCombo->currentText() );
-}
-
-void fileBrowser::populateList()
-{
- ListView->clear();
- QListViewItem * item;
- bool isDir=FALSE;
-//qDebug(currentDir.canonicalPath());
- currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
- currentDir.setMatchAllDirs(TRUE);
-
-// currentDir.setNameFilter("*.txt;*.etx");
- QString fileL, fileS, fileDate;
- const QFileInfoList *list = currentDir.entryInfoList( /*QDir::All*/ /*, QDir::SortByMask*/);
- QFileInfoListIterator it(*list);
- QFileInfo *fi;
- while ( (fi=it.current()) ) {
- if (fi->isSymLink() ){
- QString symLink=fi->readLink();
-// qDebug("Symlink detected "+symLink);
- QFileInfo sym( symLink);
- fileS.sprintf( "%10li", sym.size() );
- fileL.sprintf( "%s -> %s", sym.fileName().data(),sym.absFilePath().data() );
- fileDate = sym.lastModified().toString();
- } else {
-// qDebug("Not a dir: "+currentDir.canonicalPath()+fileL);
- fileS.sprintf( "%10li", fi->size() );
- fileL.sprintf( "%s",fi->fileName().data() );
- fileDate= fi->lastModified().toString();
- if( QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+fileL)).exists() ) {
- fileL+="/";
- isDir=TRUE;
-// qDebug( fileL);
- }
- }
- if(fileL !="./" && fi->exists()) {
- item= new QListViewItem( ListView,fileL,fileS , fileDate);
- QPixmap pm;
-
- if(isDir || fileL.find("/",0,TRUE) != -1) {
- if( !QDir( fi->filePath() ).isReadable())
- pm = Resource::loadPixmap( "lockedfolder" );
- else
- pm= Resource::loadPixmap( "folder" );
- item->setPixmap( 0,pm );
- } else {
- if( !fi->isReadable() )
- pm = Resource::loadPixmap( "locked" );
- else {
- MimeType mt(fi->filePath());
- pm=mt.pixmap();// sets the pixmap for the mimetype
- if(pm.isNull())
- pm = Resource::loadPixmap( "UnknownDocument-14" );
- item->setPixmap( 0,pm);
- }
- }
- if( fileL.find("->",0,TRUE) != -1) {
- // overlay link image
- pm= Resource::loadPixmap( "folder" );
- QPixmap lnk = Resource::loadPixmap( "opie/symlink" );
- QPainter painter( &pm );
- painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk );
- pm.setMask( pm.createHeuristicMask( FALSE ) );
- item->setPixmap( 0, pm);
- }
- }
- isDir=FALSE;
- ++it;
-// }
- }
- ListView->setSorting( 3, FALSE);
- QString currentPath = currentDir.canonicalPath();
-
- fillCombo( (const QString &)currentPath);
-// dirPathCombo->lineEdit()->setText(currentPath);
-
-// if( dirPathStringList.grep(currentPath,TRUE).isEmpty() ) {
-// dirPathCombo->clear();
-// dirPathStringList.prepend(currentPath );
-// dirPathCombo->insertStringList( dirPathStringList,-1);
-// }
-}
-
-void fileBrowser::upDir()
-{
- QString current = currentDir.canonicalPath();
- QDir dir(current);
- dir.cdUp();
- current = dir.canonicalPath();
- chdir( current.latin1() );
- currentDir.cd( current, TRUE);
- populateList();
- update();
-}
-
-// you may want to switch these 2 functions. I like single clicks
-void fileBrowser::listClicked(QListViewItem *selectedItem)
-{
- if(selectedItem) {
- QString strItem=selectedItem->text(0);
- QString strSize=selectedItem->text(1);
-// qDebug("strItem is "+strItem);
- strSize.stripWhiteSpace();
-// qDebug(strSize);
-
- if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink
- // is symlink
- QString strItem2=strItem.right( (strItem.length()-strItem.find("->",0,TRUE)) -4);
-// qDebug("strItem symlink is "+strItem2);
- if(QDir(strItem2).exists() ) {
- currentDir.cd(strItem2, TRUE);
- populateList();
- }
- } else { // not a symlink
- if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) {
- if(QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem)).exists() ) {
- strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem);
- currentDir.cd(strItem,FALSE);
-// qDebug("Path is "+strItem);
- populateList();
- } else {
- currentDir.cdUp();
- populateList();
- }
- if(QDir(strItem).exists()){
- currentDir.cd(strItem, TRUE);
- populateList();
- }
- } else {
- strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem);
- if( QFile::exists(strItem ) ) {
-//currentDir.canonicalPath()
- qDebug("We found our files!!"+strItem);
- OnOK();
- }
- } //end not symlink
- chdir(strItem.latin1());
- }
- }
-}
-
-void fileBrowser::OnOK()
-{
- QListViewItemIterator it1( ListView);
- for ( ; it1.current(); ++it1 ) {
- if ( it1.current()->isSelected() ) {
- selectedFileName=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+it1.current()->text(0));
- qDebug("selected filename is "+selectedFileName);
- fileList.append( selectedFileName );
- }
- }
- accept();
-}
-
-void fileBrowser::homeButtonPushed() {
- QString current = QDir::homeDirPath();
- chdir( current.latin1() );
- currentDir.cd( current, TRUE);
- populateList();
- update();
-}
-
-void fileBrowser::docButtonPushed() {
- QString current = QPEApplication::documentDir();
- chdir( current.latin1() );
- currentDir.cd( current, TRUE);
- populateList();
- update();
-
-}
-
-void fileBrowser::selectionChanged( const QString &select )
-{
- if ( select == "Documents") {
- FileStack->raiseWidget( fileSelector );
- dirPathCombo->hide();
- cdUpButton->hide();
- docButton->hide();
- homeButton->hide();
- } else {
- if ( select == "All files" )
- currentDir.setFilter( QDir::Files | QDir::Dirs | QDir::All);
- else
- currentDir.setFilter( QDir::Files | QDir::Dirs | QDir::Hidden | QDir::All);
-
- populateList();
- update();
- dirPathCombo->show();
- cdUpButton->show();
- docButton->show();
- homeButton->show();
- FileStack->raiseWidget( ListView );
- }
-}
-
-void fileBrowser::docOpen( const DocLnk &doc )
-{
- fileList.append( doc.file().latin1() );
- accept();
-}
-
-void fileBrowser::ListPressed( int mouse, QListViewItem *item, const QPoint &point, int i)
-{
- switch (mouse) {
- case 1:
- break;
- case 2:
- showListMenu(item);
- break;
- };
-}
-
-void fileBrowser::showListMenu(QListViewItem *item) {
-
- QPopupMenu m;// = new QPopupMenu( Local_View );
- if(item) {
- if( item->text(0).find("/",0,TRUE))
- m.insertItem( tr( "Change Directory" ), this, SLOT( doCd() ));
- m.insertItem( tr( "Make Directory" ), this, SLOT( makDir() ));
- m.insertItem( tr( "Rescan" ), this, SLOT( populateList() ));
- m.insertItem( tr( "Rename" ), this, SLOT( localRename() ));
- m.insertSeparator();
- m.insertItem( tr( "Delete" ), this, SLOT( localDelete() ));
- } else {
- m.insertItem( tr( "Make Directory" ), this, SLOT( makDir() ));
- m.insertItem( tr( "Rescan" ), this, SLOT( populateList() ));
-
- }
- m.exec( QCursor::pos() );
-}
-
-void fileBrowser::doCd() {
- listClicked( ListView->currentItem());
-}
-
-void fileBrowser::makDir() {
- InputDialog *fileDlg;
- fileDlg = new InputDialog(this,"Make Directory",TRUE, 0);
- fileDlg->exec();
- if( fileDlg->result() == 1 ) {
- QString filename = fileDlg->LineEdit1->text();
- qDebug("Make dir");
- currentDir.mkdir( currentDir.canonicalPath()+"/"+filename);
- }
- populateList();
-}
-
-void fileBrowser::localRename() {
- QString curFile = ListView->currentItem()->text(0);
- InputDialog *fileDlg;
- fileDlg = new InputDialog(this,"Rename",TRUE, 0);
- fileDlg->setTextEdit((const QString &) curFile);
- fileDlg->exec();
- if( fileDlg->result() == 1 ) {
- QString oldname = currentDir.canonicalPath() + "/" + curFile;
- QString newName = currentDir.canonicalPath() + "/" + fileDlg->LineEdit1->text();//+".playlist";
- if( rename(oldname.latin1(), newName.latin1())== -1)
- QMessageBox::message("Note","Could not rename");
- }
- populateList();
-}
-
-void fileBrowser::localDelete() {
- QString f = ListView->currentItem()->text(0);
- if(QDir(f).exists() ) {
- switch ( QMessageBox::warning(this,"Delete","Do you really want to delete\n"+f+
- " ?\nIt must be empty","Yes","No",0,0,1) ) {
- case 0: {
- f=currentDir.canonicalPath()+"/"+f;
- QString cmd="rmdir "+f;
- system( cmd.latin1());
- populateList();
- }
- break;
- case 1:
- // exit
- break;
- };
- } else {
- switch ( QMessageBox::warning(this,"Delete","Do you really want to delete\n"+f
- +" ?","Yes","No",0,0,1) ) {
- case 0: {
- f=currentDir.canonicalPath()+"/"+f;
- QString cmd="rm "+f;
- system( cmd.latin1());
- populateList();
- }
- break;
- case 1:
- // exit
- break;
- };
- }
-}
-
-void fileBrowser::updateMimeTypeMenu() {
-
- disconnect( typemb, SIGNAL(selected(const QString&)),
- this, SLOT(showType(const QString&)) );
-
- QString prev;
-
- // Type filter
- QStringList types;
- types << tr("All");
- types << "--";
- types += getMimeTypes();
- prev = typemb->currentText();
- typemb->clear();
- typemb->insertItems(types);
- // typemb->select(prev);
-
- connect(typemb, SIGNAL(selected(const QString&)), this, SLOT(showType(const QString&)));
-}
-
-void fileBrowser::showType(const QString &t) {
-
-// qDebug("Show type "+t);
- if(t.find("All",0,TRUE) != -1) {
- filterStr = "*";
- } else {
- QStringList list = mimetypes.grep( t,TRUE);
- QString ext;
- for ( QStringList::Iterator it = list.begin(); it != list.end(); ++it ) {
- mimeType =(*it);
- MimeType mt(mimeType);
-
-// qDebug("mime "+mimeType);
-// qDebug("description "+mt.description());
-// qDebug( "id "+mt.id());
-// qDebug("extension "+mt.extension());
-
- if( mt.extension().isEmpty())
- filterStr = "*";
- else
- filterStr = "*."+ mt.extension()+" ";
-// printf( "%s \n", (*it).latin1() );
- }
- }
- currentDir.setNameFilter(filterStr);
-
- populateList();
- update();
-// if(fileSelector) {
-// disconnect( fileSelector, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( docOpen( const DocLnk & ) ) );
-// delete fileSelector;
- // }
- // fileSelector = new FileSelector( mimeType, FileStack, "fileselector" , FALSE, FALSE); //buggy
-// connect( fileSelector, SIGNAL( closeMe() ), this, SLOT( showEditTools() ) );
-// connect( fileSelector, SIGNAL( newSelected( const DocLnk &) ), this, SLOT( newFile( const DocLnk & ) ) );
- // connect( fileSelector, SIGNAL( fileSelected( const DocLnk &) ), this, SLOT( docOpen( const DocLnk & ) ) );
-// fileSelector->reread();
-// if ( t == tr("All") ) {
-// icons->setTypeFilter("",TRUE);
-// } else {
-// icons->setTypeFilter(t+"/*",TRUE);
-// }
-
-}
-
-QStringList fileBrowser::getMimeTypes() {
-
- QStringList r;
- AppLnkSet apps( QPEApplication::qpeDir() + "apps" );
- QFile file( QPEApplication::qpeDir()+"etc/available.mime");
- file.open( IO_WriteOnly|IO_Truncate);//)
- for ( QListIterator<AppLnk> it( apps.children() ); it.current(); ++it ) {
- AppLnk* l;
- l = it.current();
- QStringList maj = l->mimeTypes();
- QStringList::ConstIterator f;
- for ( f = maj.begin(); f != maj.end(); f++ ) {
- QString temp = *f;
- qDebug("type "+temp);
- mimetypes << temp;
- int sl = temp.find('/');
- if (sl >= 0) {
- QString k = temp;//.left(sl);
- if( r.grep(k,TRUE).isEmpty() ) {
- r << k;
- k+="\n";
- file.writeBlock( k.latin1(), k.length());
- }
- }
- }
- }
- r.sort();
- file.close();
- return r;
-}
-
-void fileBrowser::receive( const QCString &msg, const QByteArray &data ) {
-// QDataStream stream( data, IO_ReadOnly );
-// if (msg == "keyRegister(int key, QString channel, QString message)")
-// {
-// int k;
-// QString c, m;
-// stream >> k;
-// stream >> c;
-// stream >> m;
-}
-
-void fileBrowser::dirPathComboActivated( const QString & current) {
- chdir( current.latin1() );
- currentDir.cd( current, TRUE);
- populateList();
- update();
-}
-
-void fileBrowser::dirPathEditPressed() {
- QString current = dirPathCombo->lineEdit()->text();
- chdir( current.latin1() );
- currentDir.cd( current, TRUE);
- populateList();
- update();
-}
-
-void fileBrowser::fillCombo(const QString &currentPath) {
-
- dirPathCombo->lineEdit()->setText(currentPath);
-
- if( dirPathStringList.grep(currentPath,TRUE).isEmpty() ) {
- dirPathCombo->clear();
- dirPathStringList.prepend(currentPath );
- dirPathCombo->insertStringList( dirPathStringList,-1);
- }
-}
-
-
-InputDialog::InputDialog( QWidget* parent, const char* name, bool modal, WFlags fl )
- : QDialog( parent, name, modal, fl )
-{
- if ( !name )
- setName( "InputDialog" );
- resize( 234, 50 );
- setMaximumSize( QSize( 240, 50 ) );
- setCaption( tr(name ) );
-
- LineEdit1 = new QLineEdit( this, "LineEdit1" );
- LineEdit1->setGeometry( QRect( 10, 10, 216, 22 ) );
-}
-
-InputDialog::~InputDialog()
-{
- inputText= LineEdit1->text();
-
-}
-
-void InputDialog::setTextEdit(const QString &string) {
- LineEdit1->setText(string);
-}
diff --git a/core/apps/textedit/fileBrowser.h b/core/apps/textedit/fileBrowser.h
deleted file mode 100644
index 352cb51..0000000
--- a/core/apps/textedit/fileBrowser.h
+++ b/dev/null
@@ -1,120 +0,0 @@
-/****************************************************************************
-**
-** Created: Fri Dec 14 08:16:02 2001
-**
-** This file may be distributed and/or modified under the terms of the
-** GNU General Public License version 2 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file.
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-copyright Sun 02-17-2002 22:28:23 L. J. Potter ljp@llornkcor.com
-****************************************************************************/
-#ifndef FILEBROWSER_H
-#define FILEBROWSER_H
-
-//#include <qvariant.h>
-#include <qdialog.h>
-#include <qfile.h>
-#include <qdir.h>
-#include <qstringlist.h>
-#include <qlabel.h>
-#include <qstring.h>
-#include <qdict.h>
-
-#include <qpe/filemanager.h>
-
-#include <qvariant.h>
-#include <qdialog.h>
-#include <qregexp.h>
-
-
-class QLineEdit;
-class QVBoxLayout;
-class QHBoxLayout;
-class QGridLayout;
-class QListView;
-class QListViewItem;
-class QPushButton;
-class QComboBox;
-class QWidgetStack;
-class FileSelector;
-class QPoint;
-class MenuButton;
-
-
-class fileBrowser : public QDialog
-{
- Q_OBJECT
-
-public:
- fileBrowser( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ,const QString filter=0);
- ~fileBrowser();
-
- QString selectedFileName;
- QFile file;
- QStringList fileList;
- QComboBox *SelectionCombo;
-public slots:
- void setFileView( int );
-
-private:
-// QDict<void> mimes;
- QPushButton *buttonOk, *buttonCancel, *homeButton, *docButton, *hideButton, *cdUpButton;
- QListView* ListView;
- QLabel *dirLabel;
- QString filterStr, mimeType;
- QDir currentDir;
- QStringList dirPathStringList, mimetypes;
-/* QListViewItem * item; */
- QComboBox *dirPathCombo;
- MenuButton *typemb;
- QWidgetStack *FileStack;
- FileSelector *fileSelector;
- QRegExp tf;
- QStringList getMimeTypes();
- void fillCombo( const QString&);
-
-private slots:
- void populateList();
- void homeButtonPushed();
- void docButtonPushed();
- void ListPressed( int, QListViewItem *, const QPoint&, int);
- void showListMenu(QListViewItem*);
- void doCd();
- void makDir();
- void localRename();
- void localDelete();
- void receive( const QCString &msg, const QByteArray &data );
- void dirPathComboActivated( const QString & );
- void upDir();
- void listClicked( QListViewItem * );
- void selectionChanged( const QString & );
- void OnOK();
- void docOpen( const DocLnk & );
- void updateMimeTypeMenu();
- void showType(const QString &);
- void dirPathEditPressed();
-
-protected slots:
-
-protected:
-
-};
-
-
-class InputDialog : public QDialog
-{
- Q_OBJECT
-
-public:
- InputDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
- ~InputDialog();
- QString inputText;
- QLineEdit* LineEdit1;
- void setTextEdit(const QString &);
-};
-
-#endif // FILEBROWSER_H
diff --git a/core/apps/textedit/fileSaver.cpp b/core/apps/textedit/fileSaver.cpp
deleted file mode 100644
index 209a258..0000000
--- a/core/apps/textedit/fileSaver.cpp
+++ b/dev/null
@@ -1,271 +0,0 @@
-/****************************************************************************
-** copyright 2001 ljp ljp@llornkcor.com
-** Created: Fri Dec 14 08:16:46 2001 fileSaver.cpp
-**
-** This file may be distributed and/or modified under the terms of the
-** GNU General Public License version 2 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file.
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-****************************************************************************/
-#include "fileSaver.h"
-#include <qpe/config.h>
-#include <qpe/resource.h>
-#include <qpe/mimetype.h>
-
-#include <qpe/qpeapplication.h>
-#include <qlistview.h>
-#include <qpushbutton.h>
-#include <qfile.h>
-#include <qmessagebox.h>
-#include <qlineedit.h>
-#include <qcheckbox.h>
-
-#include <unistd.h>
-
-fileSaver::fileSaver( QWidget* parent, const char* name, bool modal, WFlags fl , const QString currentFileName )
- : QDialog( parent, name, modal, fl )
-{
- if ( !name )
- setName( tr("fileSaver"));
- resize( 240, 280 );
- setCaption(tr( name ) );
- QFileInfo fi(currentFileName);
- QString tmpFileName=fi.fileName();
-// qDebug( tmpFileName);
- dirLabel = new QLabel(this, "DirLabel");
- dirLabel->setText(currentDir.canonicalPath());
- dirLabel->setGeometry(10,20,230,15);
-
- homeButton = new QPushButton(Resource::loadIconSet("home"),"",this,"homeButton");
- homeButton->setGeometry(200,4,25,25);
- connect(homeButton,SIGNAL(released()),this,SLOT(homeButtonPushed()) );
- homeButton->setFlat(TRUE);
-
- docButton = new QPushButton(Resource::loadIconSet("DocsIcon"),"",this,"docsButton");
- docButton->setGeometry(170,4,25,25);
- connect( docButton,SIGNAL(released()),this,SLOT( docButtonPushed()) );
-
- docButton->setFlat(TRUE);
-
- hideButton = new QPushButton( Resource::loadIconSet("textedit/s_hidden"),"",this,"hideButton");
- hideButton->setGeometry(140,4,25,25);
- connect( hideButton,SIGNAL(toggled(bool)),this,SLOT( hideButtonPushed(bool)) );
- hideButton->setToggleButton(TRUE);
- hideButton->setFlat(TRUE);
-
- ListView = new QListView( this, "ListView" );
- ListView->addColumn( tr( "Name" ) );
- ListView->setColumnWidth(0,120);
- ListView->setSorting( 2, FALSE);
- ListView->addColumn( tr( "Size" ) );
- ListView->setColumnWidth(1,-1);
- ListView->addColumn( tr("Date"),-1);
-
- ListView->setColumnWidthMode(0,QListView::Manual);
- ListView->setColumnAlignment(1,QListView::AlignRight);
-// ListView->setMultiSelection(true);
-// ListView->setSelectionMode(QListView::Extended);
-
- ListView->setAllColumnsShowFocus( TRUE );
- ListView->setGeometry( QRect( 10,35,220,125));
-
- fileEdit= new QLineEdit(this);
- fileEdit->setGeometry( QRect( 10, 162, 205, 17));
-
- fileEdit->setText( tmpFileName);
-
- filePermCheck = new QCheckBox( this, "SetFilePerms" );
- filePermCheck->setText(tr("set file permissions"));
- filePermCheck->setGeometry(10, 178, 150,17);
- // signals and slots connections
- connect( ListView, SIGNAL(doubleClicked( QListViewItem*)), SLOT(listDoubleClicked(QListViewItem *)) );
- connect( ListView, SIGNAL(pressed( QListViewItem*)), SLOT(listClicked(QListViewItem *)) );
-
-// tmpFileName=fi.FilePath();
-// qDebug( tmpFileName);
- currentDir.setPath( QDir::currentDirPath() );
- currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden */| QDir::All);
- populateList();
- move(0,15);
- fileEdit->setFocus();
-}
-
-fileSaver::~fileSaver()
-{
-}
-
-void fileSaver::populateList()
-{
- ListView->clear();
- bool isDir=FALSE;
- currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
- currentDir.setMatchAllDirs(TRUE);
-
- currentDir.setNameFilter("*");
- QString fileL, fileS, fileDate;
- const QFileInfoList *list = currentDir.entryInfoList( /*QDir::All*/ /*, QDir::SortByMask*/);
- QFileInfoListIterator it(*list);
- QFileInfo *fi;
- while ( (fi=it.current()) ) {
-
- if (fi->isSymLink() ){
- QString symLink=fi->readLink();
-// qDebug("Symlink detected "+symLink);
- QFileInfo sym( symLink);
- fileS.sprintf( "%10li", sym.size() );
- fileL.sprintf( "%s -> %s", sym.fileName().data(),sym.absFilePath().data() );
-
- } else {
-// // qDebug("Not a dir: "+currentDir.canonicalPath()+fileL);
- fileS.sprintf( "%10li", fi->size() );
- fileL.sprintf( "%s",fi->fileName().data() );
- if( QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+fileL)).exists() ) {
- fileL+="/";
- isDir=TRUE;
-// qDebug(currentDir.canonicalPath()+fileL);
- }
- }
- if(fileL !="./") {
- item= new QListViewItem( ListView,fileL,fileS , fileDate);
- QPixmap pm;
-
- if(isDir || fileL.find("/",0,TRUE) != -1) {
- if( !QDir( fi->filePath() ).isReadable())
- pm = Resource::loadPixmap( "lockedfolder" );
- else
- pm= Resource::loadPixmap( "folder" );
- item->setPixmap( 0,pm );
- } else {
- if( !fi->isReadable() )
- pm = Resource::loadPixmap( "locked" );
- else {
- MimeType mt(fi->filePath());
- pm=mt.pixmap();
- if(pm.isNull())
- pm = Resource::loadPixmap( "UnknownDocument-14" );
- item->setPixmap( 0,pm);
- }
- }
- if( fileL.find("->",0,TRUE) != -1) {
- // overlay link image
- pm= Resource::loadPixmap( "folder" );
- QPixmap lnk = Resource::loadPixmap( "symlink" );
- QPainter painter( &pm );
- painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk );
- pm.setMask( pm.createHeuristicMask( FALSE ) );
- item->setPixmap( 0, pm);
- }
- }
- isDir=FALSE;
- ++it;
- }
- ListView->setSorting( 2, FALSE);
- dirLabel->setText(currentDir.canonicalPath());
-
-
-}
-
-void fileSaver::upDir()
-{
-// qDebug(currentDir.canonicalPath());
-}
-
-void fileSaver::listDoubleClicked(QListViewItem *selectedItem)
-{
-}
-
-void fileSaver::listClicked(QListViewItem *selectedItem)
-{
- if(selectedItem != NULL) {
- QString strItem=selectedItem->text(0);
- QString strSize=selectedItem->text(1);
-// qDebug("strItem is "+strItem);
- strSize.stripWhiteSpace();
-// qDebug(strSize);
-
- if(strItem.find("@",0,TRUE) !=-1 || strItem.find("->",0,TRUE) !=-1 ) { //if symlink
- QString strItem2=strItem.right( (strItem.length()-strItem.find("->",0,TRUE)) -4);
-// qDebug("strItem symlink is "+strItem2);
- if(QDir(strItem2).exists() ) {
- currentDir.cd(strItem2, TRUE);
- populateList();
- }
- } else { // not a symlink
- if(strItem.find(". .",0,TRUE) && strItem.find("/",0,TRUE)!=-1 ) {
- if(QDir(QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem)).exists() ) {
- strItem=QDir::cleanDirPath(currentDir.canonicalPath()+"/"+strItem);
- currentDir.cd(strItem,FALSE);
-// qDebug("Path is "+strItem);
- populateList();
- } else {
- currentDir.cdUp();
- populateList();
- }
- if(QDir(strItem).exists()){
- currentDir.cd(strItem, TRUE);
- populateList();
- }
- } // else
-// if( QFile::exists(strItem ) ) {
-// qDebug("We found our files!!");
-
-// OnOK();
- } //end not symlink
- chdir(strItem.latin1());
-
- }
-}
-
-
-void fileSaver::closeEvent( QCloseEvent *e )
-{
- if(e->isAccepted()) {
- e->accept();
- } else {
- qDebug("not accepted");
- done(-1);
- }
-}
-
-void fileSaver::accept() {
- selectedFileName = fileEdit->text();
- QString path = currentDir.canonicalPath()+"/" + selectedFileName;
- if( path.find("//",0,TRUE) ==-1 ) {
- selectedFileName = path;
- } else {
- selectedFileName = currentDir.canonicalPath()+selectedFileName;
- }
- qDebug("going to save "+selectedFileName);
- done(1);
-}
-
-void fileSaver::homeButtonPushed() {
- chdir( QDir::homeDirPath().latin1() );
- currentDir.cd( QDir::homeDirPath(), TRUE);
- populateList();
- update();
-}
-void fileSaver::docButtonPushed() {
- chdir( QString(QPEApplication::documentDir()+"/text").latin1() );
- currentDir.cd( QPEApplication::documentDir()+"/text", TRUE);
- populateList();
- update();
-
-}
-
-void fileSaver::hideButtonPushed(bool b) {
- if (b)
- currentDir.setFilter( QDir::Files | QDir::Dirs | QDir::Hidden | QDir::All);
- else
- currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden*/ | QDir::All);
-
-// chdir( QString(QPEApplication::documentDir()+"/text").latin1() );
-// currentDir.cd( QPEApplication::documentDir()+"/text", TRUE);
- populateList();
- update();
-
-}
diff --git a/core/apps/textedit/fileSaver.h b/core/apps/textedit/fileSaver.h
deleted file mode 100644
index 195a775..0000000
--- a/core/apps/textedit/fileSaver.h
+++ b/dev/null
@@ -1,75 +0,0 @@
-/****************************************************************************
-**
-** Created: Fri Dec 14 08:16:02 2001 fileSaver.h
-**
-copyright Sun 02-17-2002 22:28:48 L. J. Potter ljp@llornkcor.com
-
-** This file may be distributed and/or modified under the terms of the
-** GNU General Public License version 2 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file.
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-****************************************************************************/
-#ifndef FILESAVER_H
-#define FILESAVER_H
-
-//#include <qvariant.h>
-#include <qdialog.h>
-#include <qfile.h>
-#include <qdir.h>
-#include <qstringlist.h>
-#include <qlabel.h>
-#include <qstring.h>
-
-class QVBoxLayout;
-class QHBoxLayout;
-class QGridLayout;
-class QListView;
-class QListViewItem;
-class QPushButton;
-class QLineEdit;
-class QCheckBox;
-
-class fileSaver : public QDialog
-{
- Q_OBJECT
-
-public:
- void populateList();
- fileSaver( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ,const QString filter=0);
- ~fileSaver();
- QLineEdit *fileEdit;
-
- QPushButton *buttonOk, *buttonCancel, *homeButton, *docButton, *hideButton;
- QListView* ListView;
- QLabel *dirLabel;
- QString selectedFileName, filterStr;
- QDir currentDir;
- QFile file;
- QStringList fileList;
- QCheckBox *filePermCheck;
-
-QListViewItem * item;
-public slots:
- void homeButtonPushed();
- void docButtonPushed();
- void hideButtonPushed(bool);
-private:
-
-private slots:
- void accept();
- void upDir();
- void listDoubleClicked(QListViewItem *);
- void listClicked(QListViewItem *);
- void closeEvent( QCloseEvent * );
-
-protected slots:
-
-protected:
-
-};
-
-#endif // FILESAVER_H
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp
index 40ea501..b276cbb 100644
--- a/core/apps/textedit/textedit.cpp
+++ b/core/apps/textedit/textedit.cpp
@@ -20,7 +20,6 @@
// changes added by L. J. Potter Sun 02-17-2002 21:31:31
#include "textedit.h"
-#include "fileSaver.h"
#include "filePermissions.h"
#include "fontDialog.h"
@@ -792,7 +791,6 @@ bool TextEdit::saveAs()
}
}
-/*
QMap<QString, QStringList> map;
map.insert(tr("All"), QStringList() );
QStringList text;
@@ -803,14 +801,6 @@ bool TextEdit::saveAs()
QString str = OFileDialog::getSaveFileName( 2,"/", QString::null, map);
if(!str.isEmpty() ) {
QString fileNm=str;
-*/
-
- fileSaveDlg=new fileSaver(this,tr("Save File As?"),TRUE, 0, currentFileName);
- qDebug("wanna save filename "+currentFileName);
- fileSaveDlg->exec();
- if( fileSaveDlg->result() == 1 ) {
- QString fileNm=fileSaveDlg->selectedFileName;
-
qDebug("saving filename "+fileNm);
QFileInfo fi(fileNm);
@@ -832,14 +822,15 @@ bool TextEdit::saveAs()
if ( !fm.saveFile( *doc, rt ) ) {
return false;
}
- if( fileSaveDlg->filePermCheck->isChecked() ) {
+
+// if( fileSaveDlg->filePermCheck->isChecked() ) {
filePermissions *filePerm;
filePerm = new filePermissions(this, tr("Permissions"),true,0,(const QString &)fileNm);
filePerm->exec();
- if( filePerm)
- delete filePerm;
- }
+ if( filePerm)
+ delete filePerm;
+// }
}
}
editor->setEdited(TRUE);
@@ -848,8 +839,6 @@ bool TextEdit::saveAs()
if(caption().left(1)=="*")
setCaption(caption().right(caption().length()-1));
- if(fileSaveDlg)
- delete fileSaveDlg;
return true;
} //end saveAs
diff --git a/core/apps/textedit/textedit.h b/core/apps/textedit/textedit.h
index d8208b1..764d852 100644
--- a/core/apps/textedit/textedit.h
+++ b/core/apps/textedit/textedit.h
@@ -25,7 +25,7 @@
#define QTEXTEDIT_OPEN_API
//#include "fileBrowser.h"
-#include "fileSaver.h"
+//#include "fileSaver.h"
#include <qpe/filemanager.h>
#include <qpe/qcopenvelope_qws.h>
@@ -110,7 +110,7 @@ private:
void setFontSize(int sz, bool round_down_not_up);
private:
- fileSaver *fileSaveDlg;
+// fileSaver *fileSaveDlg;
// fileBrowser *browseForFiles;
QpeEditor* editor;
QToolBar *menu, *editBar, *searchBar;
diff --git a/core/apps/textedit/textedit.pro b/core/apps/textedit/textedit.pro
index 484d0cd..f6e6530 100644
--- a/core/apps/textedit/textedit.pro
+++ b/core/apps/textedit/textedit.pro
@@ -1,24 +1,24 @@
TEMPLATE = app
CONFIG += qt warn_on release
DESTDIR = $(OPIEDIR)/bin
-HEADERS = textedit.h fontDialog.h fileSaver.h filePermissions.h
-SOURCES = main.cpp textedit.cpp fontDialog.cpp fileSaver.cpp filePermissions.cpp
+HEADERS = textedit.h fontDialog.h filePermissions.h
+SOURCES = main.cpp textedit.cpp fontDialog.cpp filePermissions.cpp
INCLUDEPATH += $(OPIEDIR)/include
DEPENDPATH += $(OPIEDIR)/include
LIBS += -lqpe -lopie
TARGET = textedit
TRANSLATIONS = ../../../i18n/de/textedit.ts \
- ../../../i18n/en/textedit.ts \
- ../../../i18n/es/textedit.ts \
- ../../../i18n/fr/textedit.ts \
- ../../../i18n/hu/textedit.ts \
- ../../../i18n/ja/textedit.ts \
- ../../../i18n/ko/textedit.ts \
- ../../../i18n/no/textedit.ts \
- ../../../i18n/pl/textedit.ts \
- ../../../i18n/pt/textedit.ts \
- ../../../i18n/pt_BR/textedit.ts \
- ../../../i18n/sl/textedit.ts \
- ../../../i18n/zh_CN/textedit.ts \
- ../../../i18n/zh_TW/textedit.ts
+ ../../../i18n/en/textedit.ts \
+ ../../../i18n/es/textedit.ts \
+ ../../../i18n/fr/textedit.ts \
+ ../../../i18n/hu/textedit.ts \
+ ../../../i18n/ja/textedit.ts \
+ ../../../i18n/ko/textedit.ts \
+ ../../../i18n/no/textedit.ts \
+ ../../../i18n/pl/textedit.ts \
+ ../../../i18n/pt/textedit.ts \
+ ../../../i18n/pt_BR/textedit.ts \
+ ../../../i18n/sl/textedit.ts \
+ ../../../i18n/zh_CN/textedit.ts \
+ ../../../i18n/zh_TW/textedit.ts