⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.cpp

📁 Trolltech公司发布的图形界面操作系统。可在qt-embedded-2.3.7平台上编译为嵌入式图形界面操作系统。
💻 CPP
字号:
/* ---------------------------------------------------------------------- *//*                                                                        *//* [main.C]                        Konsole                                *//*                                                                        *//* ---------------------------------------------------------------------- *//*                                                                        *//* Copyright (c) 1997,1998 by Lars Doelle <lars.doelle@on-line.de>        *//*                                                                        *//* This file is part of Konsole, an X terminal.                           *//*                                                                        *//* The material contained in here more or less directly orginates from    *//* kvt, which is copyright (c) 1996 by Matthias Ettrich <ettrich@kde.org> *//*                                                                        *//* ---------------------------------------------------------------------- *//*									      *//* Ported Konsole to Qt/Embedded                                              *//*									      *//* Copyright (C) 2000 by John Ryland <jryland@trolltech.com>                  *//*									      *//* -------------------------------------------------------------------------- */#include "konsole.h"#include <qtopia/qpeapplication.h>#include <qfile.h>#include <unistd.h>#include <stdio.h>#include <stdlib.h>/* --| main |------------------------------------------------------ */int main(int argc, char* argv[]){#if !defined (_OS_WIN32_)  setuid(getuid()); setgid(getgid()); // drop privileges#endif  QPEApplication a( argc, argv );#ifdef FAKE_CTRL_AND_ALT  QPEApplication::grabKeyboard(); // for CTRL and ALT#endif  QStrList tmp;  const char* shell = getenv("SHELL");  if (shell == NULL || *shell == '\0'){#if !defined (_OS_WIN32_)      shell = "/bin/sh";  // sh is completely broken on familiar. Let's try to get something better  if ( qstrcmp( shell, "/bin/shell" ) == 0 && QFile::exists( "/bin/bash" ) )      shell = "/bin/bash";#else      shell ="command"; // No tr#endif  }    putenv((char*)"COLORTERM="); // to trigger mc's color detection  Konsole m( "test", shell, tmp, TRUE  ); // No tr  m.setCaption( Konsole::tr("Terminal") );  a.showMainWidget( &m );  return a.exec();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -