~ubuntu-branches/ubuntu/intrepid/konversation/intrepid

« back to all changes in this revision

Viewing changes to konversation/src/server.h

  • Committer: Bazaar Package Importer
  • Author(s): Brandon Holtsclaw
  • Date: 2006-10-12 10:03:06 UTC
  • mfrom: (10.1.9 edgy)
  • Revision ID: james.westby@ubuntu.com-20061012100306-zsjbecusqvupyct6
Tags: 1.0.1-0ubuntu1
* New Upstream Bugfix Release ( UVFe approved by mdz )
* Closes Malone: #64488

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
         *  The details are passed in.  Used for example when the user does "/server irc.somewhere.net"
70
70
         */
71
71
        Server(ViewContainer* viewContainer, const QString& hostName,const QString& port,
72
 
            const QString& channel,const QString& nick, QString password, const bool& useSSL=false);
 
72
            const QString& channel,const QString& nick, const QString& password, const bool& useSSL=false);
73
73
        ~Server();
74
74
 
75
75
        QString getServerName() const;
141
141
        void appendStatusMessage(const QString& type,const QString& message);
142
142
        void appendMessageToFrontmost(const QString& type,const QString& message, bool parseURL = true);
143
143
 
144
 
        int getPreLength(QString command, QString dest);
 
144
        int getPreLength(const QString& command, const QString& dest);
145
145
 
146
146
        void dcopRaw(const QString& command);
147
147
        void dcopSay(const QString& target,const QString& command);
453
453
        /** This is connected to the SSLSocket failed.
454
454
         * @param reason The reason why this failed.  This is already translated, ready to show the user.
455
455
         */
456
 
        void sslError(QString reason);
 
456
        void sslError(const QString& reason);
457
457
        void connectionEstablished(const QString& ownHost);
458
458
        void notifyResponse(const QString& nicksOnline);
459
459
        void addDccGet(const QString& sourceNick,const QStringList& dccArguments);