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.
tdewebdev/quanta/src/dcopquanta.cpp

114 lines
3.2 KiB

/***************************************************************************
dcopquanta.cpp - description
-------------------
begin : Thu Mar 4 2004
copyright : (C) 2004 Andras Mantia <amantia@kde.org>
***************************************************************************/
/***************************************************************************
* *
* 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 *
* (at your option) any later version. *
* *
***************************************************************************/
//kde includes
//qt includes
#include <tqregexp.h>
//app includes
#include "dcopquanta.h"
#include "node.h"
extern GroupElementMapList globalGroupMap;
DCOPQuanta::DCOPQuanta() : DCOPObject("QuantaIf")
{
}
TQStringList DCOPQuanta::selectors(const TQString& tag)
{
const TQRegExp rx("\\.|\\#|\\:");
TQStringList selectorList;
GroupElementMapList::Iterator it;
for ( it = globalGroupMap.begin(); it != globalGroupMap.end(); ++it )
{
TQString key = it.key();
if (key.startsWith("Selectors|"))
{
TQString selectorName = key.mid(10);
int index = selectorName.find(':');
if (index != -1)
selectorName = selectorName.mid(0, index);
TQString tmpStr;
index = selectorName.find(rx);
if (index != -1)
{
tmpStr = selectorName.left(index).lower();
} else
{
tmpStr = selectorName;
}
if (tmpStr.isEmpty() || tag.lower() == tmpStr || tmpStr == "*")
{
tmpStr = selectorName.mid(index + 1).replace('.',' ');
if (!tmpStr.isEmpty() && !selectorList.contains(tmpStr))
selectorList << tmpStr;
}
}
}
return selectorList;
}
TQStringList DCOPQuanta::idSelectors()
{
TQStringList selectorList;
GroupElementMapList::Iterator it;
for ( it = globalGroupMap.begin(); it != globalGroupMap.end(); ++it )
{
TQString key = it.key();
if (key.startsWith("Selectors|"))
{
TQString selectorName = key.mid(10);
TQString tmpStr;
if (selectorName.startsWith("#"))
{
selectorList << selectorName.mid(1);
}
}
}
return selectorList;
}
TQStringList DCOPQuanta::groupElements(const TQString& group)
{
TQStringList elementList;
GroupElementMapList::Iterator it;
for ( it = globalGroupMap.begin(); it != globalGroupMap.end(); ++it )
{
TQString key = it.key();
if (key.startsWith(group + "|"))
{
TQString name = key.mid(10);
int index = name.find(':');
if (index != -1)
name = name.mid(0, index);
TQString tmpStr;
index = name.find("|");
if (index != -1)
{
tmpStr = name.left(index).lower();
} else
{
tmpStr = name;
}
elementList << tmpStr;
}
}
return elementList;
}