summaryrefslogblamecommitdiff
path: root/src/net/guildhandler.h
blob: 3a825c550038221404cb9fba26986cc5cc329f27 (plain) (tree)
1
2
3
4
5
6
7
  
                       

                                                       
                                                    
  
                                             














                                                                         

                          


                  
                                     
 












                               
                                                               
 

                                                               
 

                                                                
 

                                                                   
 
                                                        
 
                                                          
                                                               
 

                                                             
 
                                                             
 
                                                 
 

                                                                         
 

                                                                       
 


                                                                            
 

                                                                   
 

                                                                             
 
                                       
 
                                            

  
                   
 
                             
/*
 *  The ManaPlus Client
 *  Copyright (C) 2009  The Mana World Development Team
 *  Copyright (C) 2009-2010  The Mana Developers
 *  Copyright (C) 2011-2013  The ManaPlus Developers
 *
 *  This file is part of The ManaPlus Client.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef NET_GUILDHANDLER_H
#define NET_GUILDHANDLER_H

#include "guild.h"

#include "gui/widgets/tabs/chattab.h"

#include <iosfwd>

class Being;

namespace Net
{

class GuildHandler
{
    public:
        virtual ~GuildHandler()
        { }

        virtual void create(const std::string &name) const = 0;

        virtual void invite(const int guildId,
                            const std::string &name) const = 0;

        virtual void invite(const int guildId,
                            const Being *const being) const = 0;

        virtual void inviteResponse(const int guildId,
                                    const bool response) const = 0;

        virtual void leave(const int guildId) const = 0;

        virtual void kick(const GuildMember *const member,
                          const std::string &reason) const = 0;

        virtual void chat(const int guildId,
                          const std::string &text) const = 0;

        virtual void memberList(const int guildId) const = 0;

        virtual void info(const int guildId) = 0;

        virtual void changeMemberPostion(const GuildMember *const member,
                                         const int level) const = 0;

        virtual void requestAlliance(const int guildId,
                                     const int otherGuildId) const = 0;

        virtual void requestAllianceResponse(const int guildId,
                                             int const otherGuildId,
                                             const bool response) const = 0;

        virtual void endAlliance(const int guildId,
                                 const int otherGuildId) const = 0;

        virtual void changeNotice(const int guildId, const std::string &msg1,
                                  const std::string &msg2) const = 0;

        virtual void clear() const = 0;

        virtual ChatTab *getTab() const = 0;
};

}  // namespace Net

#endif  // NET_GUILDHANDLER_H