You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
806 B
34 lines
806 B
12 years ago
|
#include "blockselectiondcopinterface.h"
|
||
|
#include "blockselectioninterface.h"
|
||
15 years ago
|
|
||
|
#include <dcopclient.h>
|
||
|
using namespace KTextEditor;
|
||
|
|
||
|
BlockSelectionDCOPInterface::BlockSelectionDCOPInterface( BlockSelectionInterface *Parent, const char *name)
|
||
|
: DCOPObject(name)
|
||
|
{
|
||
|
m_parent = Parent;
|
||
|
}
|
||
|
|
||
|
BlockSelectionDCOPInterface::~BlockSelectionDCOPInterface()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
uint BlockSelectionDCOPInterface::blockSelectionInterfaceNumber ()
|
||
|
{
|
||
|
return m_parent->blockSelectionInterfaceNumber();
|
||
|
}
|
||
|
bool BlockSelectionDCOPInterface::blockSelectionMode ()
|
||
|
{
|
||
|
return m_parent->blockSelectionMode ();
|
||
|
}
|
||
|
bool BlockSelectionDCOPInterface::setBlockSelectionMode (bool on)
|
||
|
{
|
||
|
return m_parent->setBlockSelectionMode (on);
|
||
|
}
|
||
|
bool BlockSelectionDCOPInterface::toggleBlockSelectionMode ()
|
||
|
{
|
||
|
return m_parent->toggleBlockSelectionMode ();
|
||
|
}
|