mirror of
https://github.com/nzbget/nzbget.git
synced 2026-01-06 04:58:54 -05:00
- added link to http://nzbget.net; - replaced FSF Post address with a web link; - removed unusable subversion-tags; - updated year.
119 lines
3.1 KiB
C++
119 lines
3.1 KiB
C++
/*
|
|
* This file is part of nzbget. See <http://nzbget.net>.
|
|
*
|
|
* Copyright (C) 2004 Sven Henkel <sidddy@users.sourceforge.net>
|
|
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#ifndef NCURSESFRONTEND_H
|
|
#define NCURSESFRONTEND_H
|
|
|
|
#ifndef DISABLE_CURSES
|
|
|
|
#include "NString.h"
|
|
#include "Frontend.h"
|
|
#include "Log.h"
|
|
#include "DownloadInfo.h"
|
|
|
|
class NCursesFrontend : public Frontend
|
|
{
|
|
public:
|
|
NCursesFrontend();
|
|
virtual ~NCursesFrontend();
|
|
|
|
protected:
|
|
virtual void Run();
|
|
|
|
private:
|
|
enum EInputMode
|
|
{
|
|
normal,
|
|
editQueue,
|
|
downloadRate
|
|
};
|
|
|
|
bool m_useColor = true;
|
|
int m_dataUpdatePos = 0;
|
|
bool m_updateNextTime = false;
|
|
int m_screenHeight = 0;
|
|
int m_screenWidth = 0;
|
|
int m_queueWinTop = 0;
|
|
int m_queueWinHeight = 0;
|
|
int m_queueWinClientHeight = 0;
|
|
int m_messagesWinTop = 0;
|
|
int m_messagesWinHeight = 0;
|
|
int m_messagesWinClientHeight = 0;
|
|
int m_selectedQueueEntry = 0;
|
|
int m_lastEditEntry = -1;
|
|
bool m_lastPausePars = false;
|
|
int m_queueScrollOffset = 0;
|
|
CString m_hint;
|
|
time_t m_startHint;
|
|
int m_colWidthFiles;
|
|
int m_colWidthTotal;
|
|
int m_colWidthLeft;
|
|
|
|
// Inputting numbers
|
|
int m_inputNumberIndex = 0;
|
|
int m_inputValue;
|
|
|
|
#ifdef WIN32
|
|
std::vector<CHAR_INFO> m_screenBuffer;
|
|
std::vector<CHAR_INFO> m_oldScreenBuffer;
|
|
std::vector<WORD> m_colorAttr;
|
|
#else
|
|
void* m_window; // WINDOW*
|
|
#endif
|
|
|
|
EInputMode m_inputMode = normal;
|
|
bool m_showNzbname;
|
|
bool m_showTimestamp;
|
|
bool m_groupFiles;
|
|
int m_queueWindowPercentage = 50;
|
|
|
|
#ifdef WIN32
|
|
void init_pair(int colorNumber, WORD wForeColor, WORD wBackColor);
|
|
#endif
|
|
void PlotLine(const char * string, int row, int pos, int colorPair);
|
|
void PlotText(const char * string, int row, int pos, int colorPair, bool blink);
|
|
void PrintMessages();
|
|
void PrintQueue();
|
|
void PrintFileQueue();
|
|
void PrintFilename(FileInfo* fileInfo, int row, bool selected);
|
|
void PrintGroupQueue();
|
|
void ResetColWidths();
|
|
void PrintGroupname(NzbInfo* nzbInfo, int row, bool selected, bool calcColWidth);
|
|
void PrintTopHeader(char* header, int lineNr, bool upTime);
|
|
int PrintMessage(Message& msg, int row, int maxLines);
|
|
void PrintKeyInputBar();
|
|
void PrintStatus();
|
|
void UpdateInput(int initialKey);
|
|
void Update(int key);
|
|
void SetCurrentQueueEntry(int entry);
|
|
void CalcWindowSizes();
|
|
void RefreshScreen();
|
|
int ReadConsoleKey();
|
|
int CalcQueueSize();
|
|
void NeedUpdateData();
|
|
bool EditQueue(DownloadQueue::EEditAction action, int offset);
|
|
void SetHint(const char* hint);
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|