登录
首页 » Linux-Unix program » LINUX 2.4下面使用GTK书写的一个系统控制面板,功能强大

LINUX 2.4下面使用GTK书写的一个系统控制面板,功能强大

于 2022-08-11 发布 文件大小:728.83 kB
0 133
下载积分: 2 下载次数: 1

代码说明:

LINUX 2.4下面使用GTK书写的一个系统控制面板,功能强大-LINUX 2.4 following the use of GTK to write a system control panel and powerful

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 模拟UNIX磁盘空间管理中使用的分组链接法。在内存中建立一个虚拟盘,模拟成组链接法,实现对该虚拟盘空间的管理 虚拟盘共60块,10块为一组,系统最多支持5个...
    模拟UNIX磁盘空间管理中使用的分组链接法。在内存中建立一个虚拟盘,模拟成组链接法,实现对该虚拟盘空间的管理 虚拟盘共60块,10块为一组,系统最多支持5个文件 可以显示文件对磁盘块的占用情况,当前空闲块的分布情况 -simulated UNIX disk space used in the management of a link France. In memory to establish a virtual disk to simulate the Links Group, realize that the virtual disk space management Virtual Disk total 60, 10 to a group, the greatest support system five documents show documents to disk blocks occupied, the current free distribution of the block
    2022-05-28 23:35:06下载
    积分:1
  • linux下的一个分组遗传算法,用于求解点着色的问题
    linux下的一个分组遗传算法,用于求解点着色的问题-linux under a subgroup of genetic algorithm for solving the problem of point shader
    2022-02-25 10:50:35下载
    积分:1
  • 应用平台 UNIX 一个转换DBF数据库文件的数据到ASCII文本文件的Shell程序.这个包含SCO UNIX下的目标程序和C源程序....
    应用平台 UNIX 一个转换DBF数据库文件的数据到ASCII文本文件的Shell程序.这个包含SCO UNIX下的目标程序和C源程序.-a UNIX application platform conversion of DBF database files in ASCII text data to document the Shell procedures. The SCO UNIX include the objectives and procedures C source.
    2022-08-22 17:35:26下载
    积分:1
  • glib是在linux下使用极为广泛的一个库,主要集成了很多方便的系统函数,但是有很多工程在windows环境下也需要使用该库。这里是glib在vc9环境下的编...
    glib是在linux下使用极为广泛的一个库,主要集成了很多方便的系统函数,但是有很多工程在windows环境下也需要使用该库。这里是glib在vc9环境下的编译工程,以及已经编译好的lib文件。-glib is the most widely used linux a library, the main system integrates a number of convenient functions, but there are a number of projects in the windows environment also need to use the library. Here is the glib compiled in vc9 environment works, and has been compiled lib file.
    2023-05-12 13:00:03下载
    积分:1
  • 基于v4l2的摄像头抓图程序,简单的从yuv到bmp转化
    基于v4l2的摄像头抓图程序,简单的从yuv到bmp转化-v4l2,video to bmp
    2023-04-21 02:50:03下载
    积分:1
  • linux组播代码 #! /bin/sh gcc
    linux组播代码 #! /bin/sh gcc -Wall mcastclient.c -o mcastclient gcc -Wall mcastserver.c -o mcastserver #./mcastserver 230.1.1.1 7838 #./mcastclient 230.1.1.1 7838 192.168.100.1 12345 -linux multicast code#!/bin/shgcc-Wall mcastclient.c-o mcastclientgcc-Wall mcastserver.c-o mcastserver#./mcastserver 230.1.1.1 7838#./mcastclient 230.1.1.1 7838 192.168.100.1 12345
    2022-03-13 06:45:28下载
    积分:1
  • linux C聊天室代码,包括server端和client端。
    linux C聊天室代码,包括server端和client端。-chat rooms linux C code, including server-side and client side.
    2023-03-31 16:50:04下载
    积分:1
  • 香菜是一个GUI控制数码相机(在这个意义上,
    Coriander is a GUI for controlling a Digital Camera (in the sense of the IIDC specs issued by the 1394 Trade Association [1]). Due to the properties of the IEEE1394 protocol, Coriander can control an IEEE1394 camera without interferring with the image flow from that camera. It can thus be used to setup a camera with Coriander while the video flow is used by another application-Coriander is a GUI for controlling a Digita l Camera (in the sense of the IIDC specs issued by the 1394 Trade Association [1]). Due to the prop erties of the IEEE 1394 protocol, Coriander can control an IEEE1394 camera witho ut interferring with the image flow from that ca mera. It can thus be used to setup a camera with Co. riander while the video flow is used by another a pplication
    2022-01-26 05:08:06下载
    积分:1
  • //建立窗口 win1 = newwin(15, 50, 1 ) box(win1, ACS_VLINE, ACS_HLINE) m...
    //建立窗口 win1 = newwin(15, 50, 1 ) box(win1, ACS_VLINE, ACS_HLINE) mvwprintw(win1, 2,1, "WINDOW 1") mvwprintw(win1, 4,1, "Press any key switching to window 2") win2 = newwin(15, 40, 4, 20) box(win2, ACS_VLINE, ACS_HLINE) mvwprintw(win2, 2,1, "WINDOW 2") //建立子窗口 subwin = derwin(win2, 5, 25, 4, 5) box(subwin, ACS_VLINE, ACS_HLINE) mvwprintw(subwin, 2,1, "Sub Window of Window2") //刷新屏幕 refresh() wrefresh(win1) wrefresh(win2) touchwin(win1) wrefresh(win1) getch() touchwin(win2) mvwprintw(win2, 12,1, "Press any key to exit...") wrefresh(win2) //等待按键 getch() //结束 delwin(win1) delwin(subwin) delwin(win2) endwin() -//建立窗口 win1 = newwin(15, 50, 1, 1) box(win1, ACS_VLINE, ACS_HLINE) mvwprintw(win1, 2,1, "WINDOW 1") mvwprintw(win1, 4,1, "Press any key switching to window 2") win2 = newwin(15, 40, 4, 20) box(win
    2022-12-24 01:10:04下载
    积分:1
  • linux平台下学习so文件而编写的例子。
    在linux平台下学习so文件而编写的例子。-In linux platform to learn so documents prepared examples.
    2023-05-07 22:20:02下载
    积分:1
  • 696518资源总数
  • 105531会员总数
  • 4今日下载