Skip to content

Commit

Permalink
Add UI to message and disclaimer text
Browse files Browse the repository at this point in the history
- Add a tab page to the settings dialog to edit the custom invitation message and disclaimer
- Add a "Reset" button to revert to default settings
- Make settings dialog accessible from all Ribbon buttons
- Improve location of ribbon buttons
  • Loading branch information
Achim Leitner committed May 22, 2023
1 parent c3c66ce commit c6951a4
Show file tree
Hide file tree
Showing 8 changed files with 202 additions and 46 deletions.
38 changes: 21 additions & 17 deletions JitsiMeetOutlook/AppointmentRibbonGroup.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion JitsiMeetOutlook/CalendarRibbonButton.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions JitsiMeetOutlook/CalendarRibbonButton.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ private void CalendarRibbonButton_Load(object sender, RibbonUIEventArgs e)
setLanguage();
}

private void buttonDialogLauncher_Click(object sender, RibbonControlEventArgs e)
{

FormSettings settingsWindow = new FormSettings();
settingsWindow.Show();
}

private async void buttonNewJitsiMeeting_Click(object sender, RibbonControlEventArgs e)
{
// Get the Application object
Expand Down
136 changes: 110 additions & 26 deletions JitsiMeetOutlook/FormSettings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c6951a4

Please sign in to comment.