X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fwidgets%2Flayerbox.cpp;h=f40cf92bc85490a10d7dc18a4ac7c267805e357d;hb=1f0d096a7fc370ff02477f3860beae2669bf8903;hp=d8a8797d35e74e6e07fa080d7204954c3b0eb4c1;hpb=e5a77a32dbe17d9534d3099f1fd3fdacba199516;p=architektonas diff --git a/src/widgets/layerbox.cpp b/src/widgets/layerbox.cpp index d8a8797..f40cf92 100644 --- a/src/widgets/layerbox.cpp +++ b/src/widgets/layerbox.cpp @@ -23,7 +23,7 @@ * Default Constructor. You must call init manually before using * this class. */ -QG_LayerBox::QG_LayerBox(QWidget * parent, const char */*name*/): QComboBox(parent) +LayerBox::LayerBox(QWidget * parent, const char */*name*/): QComboBox(parent) { showByBlock = false; showUnchanged = false; @@ -35,11 +35,11 @@ QG_LayerBox::QG_LayerBox(QWidget * parent, const char */*name*/): QComboBox(pare /** * Destructor */ -QG_LayerBox::~QG_LayerBox() +LayerBox::~LayerBox() { } -RS_Layer * QG_LayerBox::getLayer() +RS_Layer * LayerBox::getLayer() { return currentLayer; } @@ -51,7 +51,7 @@ RS_Layer * QG_LayerBox::getLayer() * available. * @param showByBlock true: Show attribute ByBlock. */ -void QG_LayerBox::init(RS_LayerList & layerList, bool showByBlock, bool showUnchanged) +void LayerBox::init(RS_LayerList & layerList, bool showByBlock, bool showUnchanged) { this->showByBlock = showByBlock; this->showUnchanged = showUnchanged; @@ -78,7 +78,7 @@ void QG_LayerBox::init(RS_LayerList & layerList, bool showByBlock, bool showUnch /** * Sets the layer shown in the combobox to the given layer. */ -void QG_LayerBox::setLayer(RS_Layer & layer) +void LayerBox::setLayer(RS_Layer & layer) { currentLayer = &layer; @@ -98,7 +98,7 @@ void QG_LayerBox::setLayer(RS_Layer & layer) /** * Sets the layer shown in the combobox to the given layer. */ -void QG_LayerBox::setLayer(QString & layer) +void LayerBox::setLayer(QString & layer) { //if (layer.getName()=="ByBlock" && showByBlock) { // setCurrentItem(0); @@ -112,7 +112,7 @@ void QG_LayerBox::setLayer(QString & layer) //} } -bool QG_LayerBox::isUnchanged() +bool LayerBox::isUnchanged() { return unchanged; } @@ -123,7 +123,7 @@ bool QG_LayerBox::isUnchanged() * offers a dialog to the user that allows him/ her to * choose an individual color. */ -void QG_LayerBox::slotLayerChanged(int index) +void LayerBox::slotLayerChanged(int index) { //currentLayer.resetFlags();