diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-11 21:51:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-11 21:51:45 +0900 |
commit | 65a9f54e1051ee8ab936975e78dcb7117b265ef5 (patch) | |
tree | 4eb0dc3c3c34f8e744e70a6478cce1b5d18d9eca /kig/scripting/script-common.cc | |
parent | 2f2f921072921d62baf5cffc44fb53ce516afebe (diff) | |
download | tdeedu-65a9f54e1051ee8ab936975e78dcb7117b265ef5.tar.gz tdeedu-65a9f54e1051ee8ab936975e78dcb7117b265ef5.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kig/scripting/script-common.cc')
-rw-r--r-- | kig/scripting/script-common.cc | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/kig/scripting/script-common.cc b/kig/scripting/script-common.cc deleted file mode 100644 index e2c15786..00000000 --- a/kig/scripting/script-common.cc +++ /dev/null @@ -1,95 +0,0 @@ -// Copyright (C) 2004 Pino Toscano <toscano.pino@tiscali.it> - -// 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 Street, Fifth Floor, Boston, MA -// 02110-1301, USA. - -#include "script-common.h" - -#include <tqstring.h> - -#include <kdebug.h> -#include <tdelocale.h> - -struct script_prop -{ - const char* fillCodeStatement; - const char* icon; - const char* highlightStyle; -}; - -static const script_prop scripts_properties[] = -{ - { I18N_NOOP( "Now fill in the code:" ), "text-x-script", "" }, - { I18N_NOOP( "Now fill in the Python code:" ), "text-x-python", "Python-Kig" } -}; - -TQString ScriptType::fillCodeStatement( ScriptType::Type type ) -{ - return i18n( scripts_properties[type].fillCodeStatement ); -} - -TQString ScriptType::templateCode( ScriptType::Type type, std::list<ObjectHolder*> args ) -{ - if ( type == Python ) - { - TQString tempcode = TQString::fromLatin1( "def calc( " ); - bool firstarg = true; - TQString temparg = i18n( "Note to translators: this should be a default " - "name for an argument in a Python function. The " - "default is \"arg%1\" which would become arg1, " - "arg2, etc. Give something which seems " - "appropriate for your language.", "arg%1" ); - - uint id = 1; - for ( std::list<ObjectHolder*>::const_iterator i = args.begin(); i != args.end(); ++i ) - { - if ( !firstarg ) tempcode += ", "; - else firstarg = false; - TQString n = ( *i )->name(); - tempcode += n.isEmpty() ? temparg.arg( id ) : n; - id++; - }; - tempcode += - " ):\n" - "\t# Calculate whatever you want to show here, and return it.\n" - "\t# For example, to implement a mid point, you would put\n" - "\t# this code here:\n" - "\t#\treturn Point( ( arg1.coordinate() + arg2.coordinate() ) / 2 )\n" - "\t# Please refer to the manual for more information.\n" - "\n"; - return tempcode; - } - - kdDebug() << "No such script type: " << type << endl; - return ""; -} - -const char* ScriptType::icon( ScriptType::Type type ) -{ - return scripts_properties[type].icon; -} - -TQString ScriptType::highlightStyle( ScriptType::Type type ) -{ - return TQString( scripts_properties[type].highlightStyle ); -} - -ScriptType::Type ScriptType::intToType( int type ) -{ - if ( type == 1 ) - return Python; - - return Unknown; -} |