Qyoto  4.0.7
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties
QtGui.IQTextBrowserSignals Interface Reference
Inheritance diagram for QtGui.IQTextBrowserSignals:
Collaboration diagram for QtGui.IQTextBrowserSignals:

Public Member Functions

void BackwardAvailable (bool available)
  More...
 
void ForwardAvailable (bool available)
  More...
 
void HistoryChanged ()
  More...
 
void SourceChanged (QUrl src)
  More...
 
void Highlighted (QUrl link)
  More...
 
void Highlighted (string link)
  More...
 
void AnchorClicked (QUrl link)
  More...
 
- Public Member Functions inherited from QtGui.IQTextEditSignals
void TextChanged ()
  More...
 
void UndoAvailable (bool b)
  More...
 
void RedoAvailable (bool b)
  More...
 
void CurrentCharFormatChanged (QTextCharFormat format)
  More...
 
void CopyAvailable (bool b)
  More...
 
void SelectionChanged ()
  More...
 
void CursorPositionChanged ()
  More...
 
void CurrentFontChanged (QFont f)
 
void CurrentColorChanged (QColor c)
 

Member Function Documentation

void QtGui.IQTextBrowserSignals.AnchorClicked ( QUrl  link)

This signal is emitted when the user clicks an anchor. The URL referred to by the anchor is passed in link.

Note that the browser will automatically handle navigation to the location specified by link unless the openLinks property is set to false or you call setSource() in a slot connected. This mechanism is used to override the default navigation features of the browser.

void QtGui.IQTextBrowserSignals.BackwardAvailable ( bool  available)

This signal is emitted when the availability of backward() changes. available is false when the user is at home(); otherwise it is true.

void QtGui.IQTextBrowserSignals.ForwardAvailable ( bool  available)

This signal is emitted when the availability of forward() changes. available is true after the user navigates backward() and false when the user navigates or goes forward().

void QtGui.IQTextBrowserSignals.Highlighted ( QUrl  link)

This signal is emitted when the user has selected but not activated an anchor in the document. The URL referred to by the anchor is passed in link.

void QtGui.IQTextBrowserSignals.Highlighted ( string  link)

This is an overloaded function.

Convenience signal that allows connecting to a slot that takes just a QString, like for example QStatusBar's message().

void QtGui.IQTextBrowserSignals.HistoryChanged ( )

This signal is emitted when the history changes.

This function was introduced in Qt 4.4.

See also historyTitle() and historyUrl().

void QtGui.IQTextBrowserSignals.SourceChanged ( QUrl  src)

This signal is emitted when the source has changed, src being the new source.

Source changes happen both programmatically when calling setSource(), forward(), backword() or home() or when the user clicks on links or presses the equivalent key sequences.