Changeset f3a9d4d


Ignore:
Timestamp:
Jun 1, 2010, 8:04:53 PM (14 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.7, release-1.8, release-1.9
Children:
f57a106
Parents:
0b9e607
git-author:
David Benjamin <davidben@mit.edu> (06/01/10 17:18:30)
git-committer:
David Benjamin <davidben@mit.edu> (06/01/10 20:04:53)
Message:
Add an OwlGlobalNotifer generated from variables

It exists purely as a little GObject to fire off property signals.
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    rd70f45f rf3a9d4d  
    5656BASE_SRCS = $(CODELIST_SRCS) $(NORMAL_SRCS)
    5757
    58 GEN_C = varstubs.c perlglue.c
     58GEN_C = varstubs.c perlglue.c globalnotifier.c
    5959GEN_H = owl_prototypes.h
    6060
     
    7676        $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@
    7777
     78globalnotifier.c: globalnotifiergen.pl variable.c
     79        $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@
     80
    7881owl_prototypes.h.new: codelist.pl varstubs.c $(CODELIST_SRCS)
    7982        $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@
  • owl.h

    rd70f45f rf3a9d4d  
    561561} owl_popexec;
    562562
     563typedef struct _OwlGlobalNotifier OwlGlobalNotifier;
     564
    563565typedef struct _owl_global {
     566  OwlGlobalNotifier *gn;
    564567  owl_mainwin mw;
    565568  owl_popwin pw;
Note: See TracChangeset for help on using the changeset viewer.