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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
//
// This file is part of the aMule Project.
//
// Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
// Copyright (c) 2002-2011 Merkur ( devs@emule-project.net / http://www.emule-project.net )
//
// Any parts of this program derived from the xMule, lMule or eMule project,
// or contributed by third-party developers are copyrighted by their
// respective authors.
//
// 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.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
//
#ifndef SEARCHEXPR_H
#define SEARCHEXPR_H
#include <wx/arrstr.h>
enum ESearchOperators
{
SEARCHOP_AND,
SEARCHOP_OR,
SEARCHOP_NOT
};
#define SEARCHOPTOK_AND wxT("\255AND")
#define SEARCHOPTOK_OR wxT("\255OR")
#define SEARCHOPTOK_NOT wxT("\255NOT")
class CSearchExpr
{
public:
CSearchExpr(){}
CSearchExpr(const wxString& pszString)
{
Add(pszString);
}
void Add(ESearchOperators eOperator)
{
if (eOperator == SEARCHOP_AND) {
m_aExpr.Add(SEARCHOPTOK_AND);
}
if (eOperator == SEARCHOP_OR) {
m_aExpr.Add(SEARCHOPTOK_OR);
}
if (eOperator == SEARCHOP_NOT) {
m_aExpr.Add(SEARCHOPTOK_NOT);
}
}
void Add(const wxString& pszString)
{
m_aExpr.Add(pszString);
}
void Add(const CSearchExpr* pexpr)
{
//m_aExpr.Append(pexpr->m_aExpr);
for (unsigned int i=0; i < pexpr->m_aExpr.GetCount(); ++i) {
m_aExpr.Add(pexpr->m_aExpr[i]);
}
}
void Concatenate(const wxString& pstrString)
{
wxASSERT( m_aExpr.GetCount() == 1 );
m_aExpr[0] += ' ';
m_aExpr[0] += pstrString;
}
wxArrayString m_aExpr;
};
#ifdef _MSC_VER
#define YY_NO_UNISTD_H
#define DEBUG_NEW new
#endif
#endif
// File_checked_for_headers
|