summary refs log tree commit diff stats
path: root/plugins/python
AgeCommit message (Expand)Author
2012-11-11RebrandingBerke Viktor
2012-11-04Use configdir instead of *xchatdir*Berke Viktor
2012-11-04Eliminate warnings due to missing includesBerke Viktor
2012-10-30Some final rebrandingBerke Viktor
2012-10-30Rebrand get_info(xchatdir) but remain compatible for Perl and PythonBerke Viktor
2012-10-30Some remaining fixesBerke Viktor
2012-10-30Rebranding for the rest of plugin*Berke Viktor
2012-10-30Rebranding for XCHAT_EAT_*Berke Viktor
2012-10-30Rebranding for XCHAT_PRI_*Berke Viktor
2012-10-30Remove hexchat-plugin.h duplicateBerke Viktor
2012-10-28Further doc relocations and conversionsBerke Viktor
2012-10-27Ignore generated config.h properly on UnixBerke Viktor
2012-10-24A lot more rebrandingBerke Viktor
2012-10-21Move warning level to property sheetBerke Viktor
2012-10-18Update win32 dirent.h implementation and use header instead of static libraryBerke Viktor
2012-10-13Compatibility for Automake 1.12.4+Berke Viktor
2012-10-03Revert to VS2010 part4Berke Viktor
2012-10-02Use explicit project names, output filenames depend on themBerke Viktor
2012-10-02Oops, wrong find'n'replaceBerke Viktor
2012-10-02Remove hardcoding as much as possibleBerke Viktor
2012-10-02Change platform toolset to Visual Studio 2012Berke Viktor
2012-10-02Add XP (WDK) solution as a fallback optionBerke Viktor
2012-09-29Use proper version number for module attributeTingPing
2012-09-14Move python docsBerke Viktor
2012-09-13Reorganized if statement.TingPing
2012-09-13bumped python plugin version.TingPing
2012-09-13Added pluginpref to the python plugin.TingPing
2012-07-26Auto-load user plugins and scripts from <config>/addonsBerke Viktor
2012-07-21Use <configdir>/scripts to (auto)load Lua/Perl/Python/Tcl scriptsBerke Viktor
2012-07-21Add _AMD64_ definition for x64 builds, make Visual Studio even happierBerke Viktor
2012-07-21Add trailing backslashes to Output and Intermediate directories, make Visual ...Berke Viktor
2012-07-20Some more rebrandingBerke Viktor
2012-07-19more branding changesxhmikosr
2012-07-14Merge pull request #1 from XhmikosR/masterbviktor
2012-07-14fixed plugins using correct libdirTingPing
2012-07-14get rid of *.user files and ignore themxhmikosr
2012-07-13Update to XChat r1510Berke Viktor
2012-07-13Another bunch of rebranding stuffBerke Viktor
2012-07-13Rename files, delete old windows makefilesBerke Viktor
2012-07-11Rebranding on the file levelBerke Viktor
2012-06-15Add .user files and .gitignoreBerke Viktor
2012-06-15Add x64 support to the VS solutionBerke Viktor
2012-06-15LOTS of fixes to the VS solutionBerke Viktor
2012-06-10More solution fixes and add language interfacesBerke Viktor
2011-12-11some more multiplatform supportBerke Viktor
2011-12-11initial patches for linux compatibilityBerke Viktor
2011-02-28add wdk changes to named branchberkeviktor@aol.com
2011-02-24add xchat r1489berkeviktor@aol.com
2011-02-24nuke the repoberkeviktor@aol.com
2011-01-14split dirent.h and more xtray supportberkeviktor@aol.com
;SetContext" - Parameters: - guint: context ID to switch, returned by "FindContext" or "GetContext" - Returns: - gboolean: 1 for success, 0 for failure. "GetInfo" - Parameters: - gchar*: ID of the information you want. - Returns: - gchar*: information you requested. "GetPrefs" - Parameters: - gchar*: Setting name required. - Returns: - int: 0-Failed 1-Returned a string 2-Returned an Integer 3-Returned a Boolean. - gchar*: the information requested if it's a string. - int: the information requested if it's a integer or boolean. "HookCommand" - Parameters: - gchar*: Name of the command (without the forward slash). - int: Priority of this command. - gchar*: String of text to display when the user executes /help for this command. May be NULL if you're lazy. - int: Value to returns when the command is catched. See XCHAT_EAT_*. - Returns: - guint: The ID of the hook. "HookServer" - Parameters: - gchar*: Name of the server event. - int: Priority of this command. - int: Value to returns when the command is catched. See XCHAT_EAT_*. - Returns: - guint: The ID of the hook. "HookPrint" - Parameters: - gchar*: Name of the print event. - int: Priority of this command. - int: Value to returns when the command is catched. See XCHAT_EAT_*. - Returns: - guint: The ID of the hook. "Unhook" - Parameters: - guint: ID of the hook to unhook. (the return value of "HookCommand", "HookServer" or "HookPrint") "ListGet" - Parameters: - gchar*: The list name. - Returns: - guint: List ID. "ListNext" - Parameters: - guint: List ID returned by "ListGet". - Returns: - gboolean: says if there is no more item in the list. "ListStr" - Parameters: - guint: List ID returned by "ListGet". - gchar*: Name of the information needed. - Returns: - gchar*: The information requested. Warning: "context" attribut of "channels" list should be get with "ListInt" "ListInt" - Parameters: - guint: List ID returned by "ListGet". - gchar*: Name of the information needed. - Returns: - guint: The information requested. "ListTime" - Parameters: - guint: List ID returned by "ListGet". - gchar*: Name of the information needed. - Returns: - guint64: The information requested. "ListFields" - Parameters: - gchar*: The list name. - Returns: - gchar**: information names in this list. "ListFree" - Parameters: - guint: List ID returned by "ListGet". "EmitPrint" - Parameters: - gchar*: Text event to print. - gchar**: NULL terminated array of string. - Returns: - gboolean: 1-Success 0-Failure. "Nickcmp" - Parameters: - gchar*: String to compare. - gchar*: String to compare. - Returns: - int: An integer less than, equal to, or greater than zero if s1 is found, respectively, to be less than, to match, or be greater than s2. "Strip" - Parameters: - gchar*: String to strip. - int: Length of the string (or -1 for NULL terminated). - int: Bit-field of flags: 0-Strip mIRC colors, 1-Strip text attributes. - Returns: - gchar*: striped string. "SendModes" - Parameters: - gchar**: NULL terminated array of targets (strings). The names of people whom the action will be performed on. - int: Maximum modes to send per line. - gchar: Mode sign, '-' or '+'. - gchar: Mode char, e.g. 'o' for Ops. Available signals: "ServerSignal" - Parameters: - gchar**: word returned by xchat. - gchar**: word_eol returned bu xchat. - guint: the ID of the hook. (the return value of "HookServer"). - guint: the ID of the context where the event come from. "CommandSignal" - Parameters: - gchar**: word returned by xchat. - gchar**: word_eol returned bu xchat. - guint: the ID of the hook. (the return value of "HookCommand"). - guint: the ID of the context where the event come from. "PrintSignal" - Parameters: - gchar**: word returned by xchat. - guint: the ID of the hook. (the return value of "HookPrint"). - guint: the ID of the context where the event come from. "UnloadSignal" emited when the user asks to unload your program. Please exit(0); when received !