tahoma2d/toonz/sources/include/toonz/tcolumnhandle.h

48 lines
890 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef TCOLUMNHANDLE_H
#define TCOLUMNHANDLE_H
#include <QObject>
#include "tcommon.h"
#undef DVAPI
#undef DVVAR
#ifdef TOONZLIB_EXPORTS
#define DVAPI DV_EXPORT_API
#define DVVAR DV_EXPORT_VAR
#else
#define DVAPI DV_IMPORT_API
#define DVVAR DV_IMPORT_VAR
#endif
// forward declaration
class TXshColumn;
//=============================================================================
// TColumnHandle
//-----------------------------------------------------------------------------
class DVAPI TColumnHandle final : public QObject {
2016-06-15 18:43:10 +12:00
Q_OBJECT
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
TXshColumn *m_column;
int m_columnIndex;
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
TColumnHandle();
~TColumnHandle();
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
TXshColumn *getColumn() const;
void setColumn(TXshColumn *column);
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
int getColumnIndex() const { return m_columnIndex; }
void setColumnIndex(int index);
2016-03-19 06:57:51 +13:00
signals:
2016-06-15 18:43:10 +12:00
void columnIndexSwitched();
2016-03-19 06:57:51 +13:00
};
2016-06-15 18:43:10 +12:00
#endif // TCOLUMNHANDLE_H