Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Qt Introduction #10

Draft
wants to merge 10 commits into
base: master
Choose a base branch
from

Conversation

yeimiyaz
Copy link
Contributor

@yeimiyaz yeimiyaz commented Dec 20, 2024

Pull Request

Pull Request Checklist

  • Read and followed this repo's Contributing Guidelines
  • Based your PR on the latest version of the correct branch
  • Checked your code and writing carefully
  • Described your changes and the motivation for them below

Description of Changes

This pull request includes the improvement of the Qt introduction page.
I have enriched the descriptions of the sections taking into account the official Qt documentation.

After the changes, I was not sure about the following text description:

Dialog section
"Dialogs are commonly used for functions that do not fit into the main interface."
"Qt provides some special dialogs for the most common use-cases as file Open/Save, font selection, error messages, color choosing, printing, among others."

Signals & Slots section
"Functions or methods could be used as slots, by connecting a signal to them."
"If a signal sends data, the receiver callable will also receive it."

Please validate them.
Thanks

@yeimiyaz yeimiyaz requested a review from CAM-Gerlach December 20, 2024 22:38
@yeimiyaz yeimiyaz self-assigned this Dec 20, 2024
Copy link

netlify bot commented Dec 20, 2024

Deploy Preview for spyder-api-docs-preview ready!

Name Link
🔨 Latest commit 3348544
🔍 Latest deploy log https://app.netlify.com/sites/spyder-api-docs-preview/deploys/6798465ef100e900083548c7
😎 Deploy Preview https://deploy-preview-10--spyder-api-docs-preview.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@CAM-Gerlach CAM-Gerlach changed the title Improvement of the Qt Introduction Improve Qt Introduction Dec 24, 2024
@CAM-Gerlach CAM-Gerlach added the enhancement New feature or request label Dec 24, 2024
The user has to end the interaction with the modal dialog and close it to access to any other window in the application.
For example, dialogs for requesting information or selecting preferences for an application may be modal.
A modeless dialog operates independently of other windows of the same application.
For example, find and replace dialogs allow the user to interact with both the modeless dialog and the application's main window.

Qt provides some *special dialogs* for the most common use-cases as *file Open/Save*, *font selection*, *error messages*, *color choosing*, *printing*, among others.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Qt provides some *special dialogs* for the most common use-cases as *file Open/Save*, *font selection*, *error messages*, *color choosing*, *printing*, among others.
Qt provides some standard dialogs for the most common use cases, such as *file Open/Save*, *error messages*, *color choosing*, *printing*, among others.


**Slot** is a function that is invoked in response to a specific signal.
Functions or methods could be used as slots, by connecting a signal to them.
If a signal sends data, the receiver callable will also receive it.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
If a signal sends data, the receiver callable will also receive it.
If a signal sends data, the slot function will be called with it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants