代码搜索结果
找到约 16,607 项符合
Screen 的代码
screen-information.html
Xlib Programming Manual: Screen Information Macros
2.2.3. Screen Information Macros
The following lists the C language macros,
their
screen-saver.html
Xlib Programming Manual: Screen Saver Control
9.7 Screen Saver Control
Xlib provides functions that you can use to set or reset the
screen.cpp
//THE PROGRAM IS TO TEST THE SCREEN POINTER'S USING
//FILE SCREEN.CPP
#include
#include
#include
#include
#define SCREEN (*SCREENPOINTER)
#define
screen.h
#ifndef Screen_h
#define Screen_h
#pragma interface
#include "others/mystring.h"
#include "others/auto_ptr.h"
#include "user_interface.h"
class screen
{
public:
static screen* Instance() { retu
screen.h
#ifndef Screen_h
#define Screen_h
#pragma interface
#include
#include "ui/user_interface.h"
typedef int key_type;
class screen // Bridge to the UserInterface, singleton
{
friend
screen.cpp
#include
using std::cerr;
using std::cout;
using std::endl;
#include "screen.h"
// --------------------------
// Screen static data members
// --------------------------
Scree
screen.h
#ifndef SCREEN_H
#define SCREEN_H
#include
using std::string;
class Screen {
public:
enum CursorMovements {
HOME, FORWARD, BACK, UP, DOWN, END
};
typedef Screen& (Scr
screen.cpp
#include
using std::cerr;
using std::cout;
using std::endl;
#include "screen.h"
// --------------------------
// Screen static data members
// --------------------------
Scree
screen.h
#ifndef SCREEN_H
#define SCREEN_H
#include
using std::string;
#include
//-------------
// Screen class
//-------------
class Screen {
public:
enum CursorMovements
screen.java
import java.awt.*;
public class Screen
{
Toolkit kit;
Dimension screenModel;
int screenWidth;
int screenHeight;
///////////////////////////////////////////////////
///////
Screen()