-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.cpp
81 lines (72 loc) · 3.06 KB
/
test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include "curses.h"
using namespace std;
int main()
{
// termSize
termSize(); // Main Run Each Time Before Terminal Starts
universalClear();
// ramesh();
cout << "Width: " << currentTerm.width << ", ";
cout << "Height: " << currentTerm.height << endl;
// int h = currentTerm.height;
// int w = currentTerm.width;
// cout << BG_RED << WHITE << " White Text With Red Background!! \n" << RESET << BG_NRM;
// cout << endl;
// setTitle("Title in Center", BG_RED, WHITE);
// specialProgreassBar(100, 1, "Loading Complete!");
stableProgreassBar(100, 1, "Loading Complete!");
// stablePercentProgressBar(100, 1, "Loading Complete!");
// printf("width: %d, height: %d\n", currentTerm.width, currentTerm.height);
// startNewInstance();
// centerText("Hello, From Center");
// printf(dash);
// cout << processBar;
// boldRedStr(" _______ _____ ____________\n");
// boldBlueStr(" / ___/ / / / _ \\/ __/ __/ __/\n");
// boldGreenStr("/ /__/ /_/ / , _/\\ \\/ _/_\\ \\ \n");
// boldYellowStr("\\___/\\____/_/|_/___/___/___/ \n\n");
// greenStr("Header File");
// addstr(" With");
// boldCyanStr(" C");
// boldMagentaStr("O");
// boldBlueStr("L");
// boldYellowStr("O");
// boldGreenStr("R");
// boldRedStr("S\n");
// addstr("\nThis is a Normal String\n");
// addstr("This is a Normal BOLD String\n", 'B');
// addstr("This is a Normal UNDERLINE String\n\n", 'U');
// addstr("This is a Normal REVERSE String\n\n", 'R');
// // COLORED STRINGS
// blackStr("This is Black color string\n");
// redStr("This is Red color string\n");
// greenStr("This is Green color string\n");
// yellowStr("This is Yellow color string\n");
// blueStr("This is Blue color string\n");
// magentaStr("This is Magenta color string\n");
// cyanStr("This is Cyan color string\n");
// whiteStr("This is White color string\n");
// // BOLD COLORED STRINGS
// gimmeSomeSpace(2);
// boldBlackStr("This is Bold Black color string.\n");
// boldRedStr("This is Bold Red color string.\n");
// boldGreenStr("This is Bold Green color string.\n");
// boldYellowStr("This is Bold Yellow color string.\n");
// boldBlueStr("This is Bold Blue color string.\n");
// boldMagentaStr("This is Magenta color string.\n");
// boldCyanStr("This is Bold Cyan color string.\n");
// boldWhiteStr("This is Bold White color string.\n");
// delayEffectText("\n\nHey, This is a Delay Effect Text!\nSo it has a time gap of 1 millisecond it looks like someone is typing something...anyways i find it cool so i just added it :P");
endNewInstance();
getch();
return 0;
}
// int ramesh()
// {
// wait(1);
// termSize();
// printf("width: %d, height: %d\n", currentTerm.width, currentTerm.height);
// wait(1);
// universalClear();
// ramesh();
// }