A Simple X Image Viewer
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 13 gadiem
pirms 13 gadiem
pirms 13 gadiem
pirms 13 gadiem
pirms 13 gadiem
pirms 13 gadiem
pirms 13 gadiem
pirms 13 gadiem
pirms 13 gadiem
pirms 13 gadiem
pirms 13 gadiem
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* Copyright 2011 Bert Muennich
  2. *
  3. * This file is part of sxiv.
  4. *
  5. * sxiv is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published
  7. * by the Free Software Foundation; either version 2 of the License,
  8. * or (at your option) any later version.
  9. *
  10. * sxiv 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 sxiv. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef COMMANDS_H
  19. #define COMMANDS_H
  20. #include <X11/Xlib.h>
  21. #include "types.h"
  22. typedef void* arg_t;
  23. typedef bool (*command_f)(arg_t);
  24. typedef struct {
  25. bool ctrl;
  26. KeySym ksym;
  27. command_f cmd;
  28. arg_t arg;
  29. } keymap_t;
  30. typedef struct {
  31. bool ctrl;
  32. bool shift;
  33. unsigned int button;
  34. command_f cmd;
  35. arg_t arg;
  36. } button_t;
  37. bool it_quit(arg_t);
  38. bool it_switch_mode(arg_t);
  39. bool it_toggle_fullscreen(arg_t);
  40. bool it_toggle_bar(arg_t);
  41. bool t_reload_all(arg_t);
  42. bool it_reload_image(arg_t);
  43. bool it_remove_image(arg_t);
  44. bool i_navigate(arg_t);
  45. bool i_alternate(arg_t);
  46. bool it_first(arg_t);
  47. bool it_n_or_last(arg_t);
  48. bool i_navigate_frame(arg_t);
  49. bool i_toggle_animation(arg_t);
  50. bool it_scroll_move(arg_t);
  51. bool it_scroll_screen(arg_t);
  52. bool i_scroll_to_edge(arg_t);
  53. bool i_drag(arg_t);
  54. bool i_zoom(arg_t);
  55. bool i_set_zoom(arg_t);
  56. bool i_fit_to_win(arg_t);
  57. bool i_fit_to_img(arg_t);
  58. bool i_rotate(arg_t);
  59. bool i_flip(arg_t);
  60. bool i_toggle_antialias(arg_t);
  61. bool it_toggle_alpha(arg_t);
  62. bool it_open_with(arg_t);
  63. bool it_shell_cmd(arg_t);
  64. #endif /* COMMANDS_H */