代码搜索:libglade
找到约 27 项符合「libglade」的源代码
代码结果 27
www.eeworm.com/read/423632/2025287
spec libglade.spec
%define pfx /opt/freescale/rootfs/%{_target_cpu}
Summary : The libglade library for loading user interfaces
Name : libglade
Version : 2.3.6
Release : 1
Vendor
www.eeworm.com/read/415010/11086340
c use_libglade.c
#include
#include
#include
#include
#include //gettext support
#define GLADE_FILE "test.glade"
#define PACKAGE "test.glade"
#define LOC
www.eeworm.com/read/294875/8196134
c example-2-with-libglade-connection.c
/* This program displays a "pulsing" (or whatever it's called)
* ProgressBar, adds a timeout function to keep it updated, shows how
* to obtain an individual widget that libglade created, and also
www.eeworm.com/read/415010/11086335
makefile
CC=gcc
PRO=load_libglade
SRC=load_libglade.c
LIBS=`pkg-config --libs libglade-2.0`
CFLAGS=`pkg-config --cflags libglade-2.0`
OPTIONS=-rdynamic
all:$(SRC)
$(CC) -o $(PRO) $(SRC) $(CFLAGS) $(LI
www.eeworm.com/read/386689/8732527
makefile
#AR :=
#AS :=
#CPP :=
#CXX :=
#LD :=
#CC :=
EXECUTABLE := browser.exe
MINGWFLAGS := -mno-cygwin
WINDOWSFLAGS := -mwindows
WIN32SOFLAGS := -lws2_32
#LDFLAGS := $(WINDOWSFLAGS) $(shell pkg-config --lib
www.eeworm.com/read/445161/7598400
win makefile.win
# -*- Makefile -*-
#
# Sample makefile for GtkGLExt example programs
# Naofumi Yasufuku
#
SHELL = /bin/sh
#INCLUDES := $(shell pkg-config --cflags gtk+-2.0 libglade
www.eeworm.com/read/330304/12902848
readme
*******************************************************************************
* Graph - простая рисовалка графиков на GTK+ и MathGL *
****************************************
www.eeworm.com/read/337284/12379257
d audacious.d
src/Audacious.d src/Audacious.o: ../src/Audacious.c \
../src/../include/ShowLyric.h ../src/../include/Defines.h \
/usr/include/libxml2/libxml/xmlreader.h \
/usr/include/libxml2/libxml/xmlversion
www.eeworm.com/read/202493/15381483
readme
Sample Browser for OSB - osb-browser
----------------------------------------------------------------
osb-browser is a simple browser for GTK widget toolkit. It is
demonstration / test browser usin
www.eeworm.com/read/476604/6756796
makefile
CC = cc
CFLAGS = -Wall -g -export-dynamic `pkg-config --cflags --libs gtk+-2.0 libglade-2.0`
all:
$(MAKE) browser
browser: browser.c navigation.c
$(CC) $(CFLAGS) $@.c navigation.c -o $@
c