summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircserverlist.cpp
authorzecke <zecke>2004-09-08 21:51:06 (UTC)
committer zecke <zecke>2004-09-08 21:51:06 (UTC)
commitebb830522c9662bda4c4453e532bcc29631c5d60 (patch) (unidiff)
tree5cf95975e91cb2db78be5cdf47c01a340109c1f4 /noncore/net/opieirc/ircserverlist.cpp
parentf0fdb800d57e9a1d95ba593185e9462300539eea (diff)
downloadopie-ebb830522c9662bda4c4453e532bcc29631c5d60.zip
opie-ebb830522c9662bda4c4453e532bcc29631c5d60.tar.gz
opie-ebb830522c9662bda4c4453e532bcc29631c5d60.tar.bz2
-Close Tab Keyboard Accelerator with delayed deletion of the tab
-Optionally add a TimeStamp to the Tab -Remove not implemented CTCP actions from the Channel PopupMenu -Give Focus to the Edit Line -Some more ping handling patch inspired and copied from zautrix fork
Diffstat (limited to 'noncore/net/opieirc/ircserverlist.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieirc/ircserverlist.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/noncore/net/opieirc/ircserverlist.cpp b/noncore/net/opieirc/ircserverlist.cpp
index 62bfc17..3e78469 100644
--- a/noncore/net/opieirc/ircserverlist.cpp
+++ b/noncore/net/opieirc/ircserverlist.cpp
@@ -79,12 +79,17 @@ IRCServerList::IRCServerList(QWidget* parent, const char *name, bool modal, WFla
79 server.setChannels(m_config->readEntry("Channels")); 79 server.setChannels(m_config->readEntry("Channels"));
80 m_list->insertItem(new IRCListBoxServer(server)); 80 m_list->insertItem(new IRCListBoxServer(server));
81 } 81 }
82 } 82 }
83 } 83 }
84 84
85 connect(m_list, SIGNAL(doubleClicked(QListBoxItem*)),
86 this, SLOT(acceptOnClick(QListBoxItem *)));
87 connect(m_list, SIGNAL(returnPressed(QListBoxItem*)),
88 this, SLOT(acceptOnClick(QListBoxItem*)));
89
85 QPEApplication::showDialog( this ); 90 QPEApplication::showDialog( this );
86} 91}
87 92
88void IRCServerList::addServer() 93void IRCServerList::addServer()
89{ 94{
90 IRCServer server; 95 IRCServer server;
@@ -119,12 +124,16 @@ void IRCServerList::editServer()
119 server = editor.getServer(); 124 server = editor.getServer();
120 item->setServer(server); 125 item->setServer(server);
121 } 126 }
122 } 127 }
123} 128}
124 129
130void IRCServerList::acceptOnClick( QListBoxItem* ) {
131 accept();
132}
133
125int IRCServerList::exec() 134int IRCServerList::exec()
126{ 135{
127 int returncode = QDialog::exec(); 136 int returncode = QDialog::exec();
128 /* Now save the changes */ 137 /* Now save the changes */
129 m_config->setGroup("OpieIRC"); 138 m_config->setGroup("OpieIRC");
130 m_config->writeEntry("ServerCount", QString::number(m_list->count())); 139 m_config->writeEntry("ServerCount", QString::number(m_list->count()));