call_tab.hpp 923 Bytes
Newer Older
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
#ifndef CVVISUAL_CALL_TAB_HPP
#define CVVISUAL_CALL_TAB_HPP

#include <QString>
#include <QWidget>

#include "../util/util.hpp"

namespace cvv
{
namespace gui
{

/**
 * @brief Super class of the inner part of a tab or window.
 * A call tab.
 * The inner part of a tab or a window.
 * Super class for actual call tabs containing views.
 */
class CallTab : public QWidget
{
	Q_OBJECT
      public:
	/**
	 * @brief Returns the name of this tab.
	 * @return current name
	 */
	const QString getName() const
	{
		return name;
	}

	/**
	 * @brief Sets the name of this tab.
	 * @param name new name
	 */
	void setName(const QString &newName)
	{
		name = newName;
	}

	/**
	 * @brief Returns the of this CallTab.
	 * @return the ID of the CallTab
	 * (ID is equal to the ID of the associated call in derived classes)
	 */
	virtual size_t getId() const
	{
		return 0;
	}

      private:
	QString name;
};
}
} // namespaces

#endif