home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / include / k3d / k3dsdk / log_control.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-01-23  |  2.1 KB  |  61 lines

  1. #ifndef K3DSDK_LOG_CONTROL_H
  2. #define K3DSDK_LOG_CONTROL_H
  3.  
  4. // K-3D
  5. // Copyright (c) 1995-2004, Timothy M. Shead
  6. //
  7. // Contact: tshead@k-3d.com
  8. //
  9. // This program is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2 of the License, or (at your option) any later version.
  13. //
  14. // This program is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17. // General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU General Public
  20. // License along with this program; if not, write to the Free Software
  21. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22.  
  23. #include "signal_system.h"
  24.  
  25. namespace k3d
  26. {
  27.  
  28. /// Enumerates available log levels
  29. typedef enum
  30. {
  31.     K3D_LOG_LEVEL_CRITICAL = 1,
  32.     K3D_LOG_LEVEL_ERROR = 2,
  33.     K3D_LOG_LEVEL_WARNING = 3,
  34.     K3D_LOG_LEVEL_INFO = 4,
  35.     K3D_LOG_LEVEL_DEBUG = 5
  36. } log_level_t;
  37.  
  38. /// Enables logging of timestamps (default: off)
  39. void log_show_timestamps(bool Enable);
  40. /// Sets a "tag" that will be prepended to log messages (default: empty)
  41. void log_set_tag(const std::string& Tag);
  42. /// Enables color output based on log level (default: off)
  43. void log_color_level(bool Enable);
  44. /// Prepends the log level to messages (default: off)
  45. void log_show_level(bool Enable);
  46. /// Enables logging to the syslog on systems that support it (default: off)
  47. void log_syslog(bool Enable);
  48. /// Sets the minimum level of message to be logged (default: K3D_LOG_LEVEL_WARNING)
  49. void log_minimum_level(const log_level_t Level);
  50.  
  51.  
  52. /// Connects a slot to a signal that will be emitted whenever messages are added to the log 
  53. sigc::connection connect_log_message(const sigc::slot<void, const time_t, const log_level_t, const std::string&>& Slot);
  54. /// Retrieves the current contents of the log cache by repeatedly calling the given slot
  55. void get_log_cache(const sigc::slot<void, const time_t, const log_level_t, const std::string&>& Slot);
  56.  
  57. } // namespace k3d
  58.  
  59. #endif // !K3DSDK_LOG_CONTROL_H
  60.  
  61.