Reply To: popup menu actions? (how?)

Home Forums General Programming popup menu actions? (how?) Reply To: popup menu actions? (how?)

#72840
human fly
Participant
    • Topics: 124
    • Replies: 1070
    • Total: 1194
    • ★★★★
     void setLookAndFeel (LookAndFeel* newLookAndFeel);
    
        //==============================================================================
        /** A set of colour IDs to use to change the colour of various aspects of the menu.
            These constants can be used either via the LookAndFeel::setColour()
            method for the look and feel that is set for this menu with setLookAndFeel()
            @see setLookAndFeel, LookAndFeel::setColour, LookAndFeel::findColour
        */
        enum ColourIds
        {
            backgroundColourId             = 0x1000700,  /**< The colour to fill the menu's background with. */
            textColourId                   = 0x1000600,  /**< The colour for normal menu item text, (unless the
                                                              colour is specified when the item is added). */
            headerTextColourId             = 0x1000601,  /**< The colour for section header item text (see the
                                                              addSectionHeader() method). */
            highlightedBackgroundColourId  = 0x1000900,  /**< The colour to fill the background of the currently
                                                              highlighted menu item. */
            highlightedTextColourId        = 0x1000800,  /**< The colour to use for the text of the currently
                                                              highlighted item. */
        };
    
    Ctrlr