sfeed

simple feed reader - forked from https://git.codemadness.org/sfeed
git clone git://src.gearsix.net/sfeedsfeed.zip
Log | Files | Refs | Atom | README | LICENSE

mono.h (raw) (805B)


   1 /* default mono theme */
   2 #define THEME_ITEM_NORMAL()
   3 #define THEME_ITEM_FOCUS()
   4 #define THEME_ITEM_BOLD()             do { attrmode(ATTR_BOLD_ON);    } while(0)
   5 #define THEME_ITEM_SELECTED()         do { if (p->focused) attrmode(ATTR_REVERSE_ON); } while(0)
   6 #define THEME_SCROLLBAR_FOCUS()
   7 #define THEME_SCROLLBAR_NORMAL()      do { attrmode(ATTR_FAINT_ON);   } while(0)
   8 #define THEME_SCROLLBAR_TICK_FOCUS()  do { attrmode(ATTR_REVERSE_ON); } while(0)
   9 #define THEME_SCROLLBAR_TICK_NORMAL() do { attrmode(ATTR_REVERSE_ON); } while(0)
  10 #define THEME_LINEBAR()               do { attrmode(ATTR_FAINT_ON);   } while(0)
  11 #define THEME_STATUSBAR()             do { attrmode(ATTR_REVERSE_ON); } while(0)
  12 #define THEME_INPUT_LABEL()           do { attrmode(ATTR_REVERSE_ON); } while(0)
  13 #define THEME_INPUT_NORMAL()