add how-to
This commit is contained in:
parent
57f1481a43
commit
b7faa20288
3 changed files with 33 additions and 1 deletions
|
@ -231,7 +231,7 @@ void MainScreen::setLabelConnectionStatus(jceLogin::jceStatus statusDescription)
|
|||
}
|
||||
void MainScreen::on_actionCredits_triggered()
|
||||
{
|
||||
QMessageBox::about(this, "About", "A tiny application to calculate your grades average. <br><br>"
|
||||
QMessageBox::about(this, "About", "A tiny Application to calculate your grades average. v1.0 <br><br>"
|
||||
"This software is licensed under Qt5's <br>GNU LESSER GENERAL PUBLIC LICENSE V2<br>"
|
||||
"The source code is available at github:<br>"
|
||||
"<a href='https://github.com/liranbg/jceAverageCalculator'>jceAverageCalculator Repository</a>"
|
||||
|
@ -268,3 +268,27 @@ void MainScreen::on_keepLogin_clicked()
|
|||
else
|
||||
SaveData::deleteData();
|
||||
}
|
||||
|
||||
void MainScreen::on_actionHow_To_triggered()
|
||||
{
|
||||
QMessageBox::information(this,"How To",
|
||||
"<b>How To..</b>"
|
||||
"<ul>"
|
||||
"<br><li>Insert your username and password correctly</li>"
|
||||
"<br><li>Login and wait for the ball in the status (buttom) bar to become Green</li>"
|
||||
"<br><li>Check <b>Settings</b> to select your date Interval</li>"
|
||||
"<br><li>Press <b>Courses</b> tab and then press <u>Add</u> button and wait until courses will be loaded into the table</li>"
|
||||
"<br><li>Change the once of the grade cell and see your average is changing. </li>"
|
||||
"<br><br>Tip: Need to change Date interval? in Courses tab click <u>Clean</u>, then change the date interval then hit <u>Add</u> again! :-)"
|
||||
"</ul>"
|
||||
"<br><br><b>הסבר</b>"
|
||||
"<ul>"
|
||||
"<br><li>הכנס את שם המשתמש והסיסמה שלך כנדרש</li>"
|
||||
"<br><li>לחץ התחבר והמתן מספר שניות עד להופעת כדור ירוק בתחתית המסך</li>"
|
||||
"<br><li>בדוק <b>הגדרות</b> כדי לבדוק את תקופת הזמן אותם תרצה להציג</li>"
|
||||
"<br><li> לחץ על <b>Courses</b> ולאחר מכן על כפתור <u>Add</u> והמתן מספר שניות עד להופעת הקורסים בטבלה</li>"
|
||||
"<br><li>כעת ניתן לשנות ערכים בתא הציונים ולראות את ממוצע הציונים בהתאם </li>"
|
||||
"<br><br>טיפ: רוצה לשנות את תקופת הזמן? לחץ על <u>Clean</u> , ולאחר מכן שנה את תקופת הזמן ולחץ על <u>Add</u> שוב! :-)"
|
||||
" </ul>");
|
||||
|
||||
}
|
||||
|
|
|
@ -54,6 +54,8 @@ private slots:
|
|||
|
||||
void on_keepLogin_clicked();
|
||||
|
||||
void on_actionHow_To_triggered();
|
||||
|
||||
private:
|
||||
|
||||
void updateDates();
|
||||
|
|
|
@ -682,6 +682,7 @@ font-size: 15px;
|
|||
<property name="title">
|
||||
<string>&About</string>
|
||||
</property>
|
||||
<addaction name="actionHow_To"/>
|
||||
<addaction name="actionCredits"/>
|
||||
<addaction name="actionExit"/>
|
||||
</widget>
|
||||
|
@ -711,6 +712,11 @@ font-size: 15px;
|
|||
<string>Exit</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionHow_To">
|
||||
<property name="text">
|
||||
<string>How-To</string>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<layoutdefault spacing="6" margin="11"/>
|
||||
<tabstops>
|
||||
|
|
Loading…
Reference in a new issue