代码搜索结果
找到约 10,000 项符合
Screen 的代码
screen
# $EPIC: screen,v 1.3 2002/08/12 16:59:49 jnelson Exp $
# screen - makes ircII like screen.
# original idea from Avalon (avalon@coombs.anu.edu.au)
# this script by phone (phone@coombs.anu.edu.au)
#
#
screen.for
CHARACTER*1 SCREEN(:,:), CH
N = 80*25
ALLOCATE( SCREEN(0:1,0:N-1), LOCATION='B8000000'x )
CH = ')'
DO I = 0, N-1
IF( I/80*80 .EQ. I) CH = CHAR( ICHAR( CH ) + 1 )
screen.as
/*
* Copyright (c) 2008, 2009 Flowplayer Oy
*
* This file is part of Flowplayer.
*
* Flowplayer is free software: you can redistribute it and/or modify
* it under the terms
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