Root/src/utilities.h

1/***************************************************************************
2 * Copyright (C) 2006 by Massimiliano Torromeo *
3 * massimiliano.torromeo@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#ifndef UTILITIES_H
22#define UTILITIES_H
23
24#include <string>
25#include <vector>
26
27#include "inputmanager.h"
28
29class case_less {
30public:
31    bool operator()(const std::string &left, const std::string &right) const;
32};
33
34std::string trim(const std::string& s);
35std::string strreplace(std::string orig, const std::string &search, const std::string &replace);
36std::string cmdclean(std::string cmdline);
37
38bool fileExists(const std::string &file);
39bool rmtree(std::string path);
40
41int constrain(int x, int imin, int imax);
42
43int evalIntConf(int val, int def, int imin, int imax);
44int evalIntConf(int *val, int def, int imin, int imax);
45
46bool split(std::vector<std::string> &vec, const std::string &str,
47        const std::string &delim, bool destructive=true);
48
49int intTransition(int from, int to, long int tickStart, long duration=500,
50        long tickNow=-1);
51
52void inject_user_event(enum EventCode code = REPAINT_MENU,
53            void *data1 = NULL, void *data2 = NULL);
54
55#endif // UTILITIES_H
56

Archive Download this file



interactive