123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- /*\
- |*| Copyright 2015 bill-auger <https://github.com/bill-auger/av-caster/issues>
- |*|
- |*| This file is part of the AvCaster program.
- |*|
- |*| AvCaster is free software: you can redistribute it and/or modify
- |*| it under the terms of the GNU Lesser General Public License version 3
- |*| as published by the Free Software Foundation.
- |*|
- |*| AvCaster is distributed in the hope that it will be useful,
- |*| but WITHOUT ANY WARRANTY; without even the implied warranty of
- |*| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- |*| GNU Lesser General Public License for more details.
- |*|
- |*| You should have received a copy of the GNU Lesser General Public License
- |*| along with AvCaster. If not, see <http://www.gnu.org/licenses/>.
- \*/
- //[Headers] You can add your own extra header files here...
- #include "AvCaster.h"
- #include "Trace/TraceChat.h"
- //[/Headers]
- #include "ChatList.h"
- //[MiscUserDefs] You can add your own user definitions and misc code here...
- //[/MiscUserDefs]
- //==============================================================================
- ChatList::ChatList (ValueTree chatters_store)
- : chattersStore(chatters_store)
- {
- addAndMakeVisible (chattersGroup = new GroupComponent ("chattersGroup",
- TRANS("(connecting)")));
- chattersGroup->setColour (GroupComponent::outlineColourId, Colours::white);
- chattersGroup->setColour (GroupComponent::textColourId, Colours::white);
- addAndMakeVisible (dummyChatListItem = new ChatListItem (ValueTree::invalid));
- dummyChatListItem->setName ("dummyChatListItem");
- //[UserPreSize]
- //[/UserPreSize]
- setSize (128, 48);
- //[Constructor] You can add your own custom stuff here..
- chattersGroup->setTextLabelPosition(Justification::horizontallyCentred) ;
- // hide GUI designer placeholder
- this->dummyChatListItem->setVisible(false) ;
- // register interest in join/parts
- this->chattersStore.addListener(this) ;
- //[/Constructor]
- }
- ChatList::~ChatList()
- {
- //[Destructor_pre]. You can add your own custom destruction code here..
- //[/Destructor_pre]
- chattersGroup = nullptr;
- dummyChatListItem = nullptr;
- //[Destructor]. You can add your own custom destruction code here..
- deleteAllChildren() ;
- //[/Destructor]
- }
- //==============================================================================
- void ChatList::paint (Graphics& g)
- {
- //[UserPrePaint] Add your own custom painting code here..
- //[/UserPrePaint]
- g.setColour (Colour (0xff202020));
- g.fillRoundedRectangle (4.0f, 10.0f, 120.0f, 34.0f, 4.000f);
- //[UserPaint] Add your own custom painting code here..
- g.fillRoundedRectangle(4.0f , 10.0f , getWidth() - 8.0f , getHeight() - 14.0f , 4.000f) ;
- //[/UserPaint]
- }
- void ChatList::resized()
- {
- //[UserPreResize] Add your own custom resize code here..
- //[/UserPreResize]
- chattersGroup->setBounds (0, 0, 128, 48);
- dummyChatListItem->setBounds (12, 16, 104, 24);
- //[UserResized] Add your own custom resize handling here..
- this->chattersGroup->setSize(getWidth() , getHeight()) ;
- //[/UserResized]
- }
- //[MiscUserCode] You can add your own definitions of your custom methods or any other code here...
- void ChatList::valueTreeChildAdded(ValueTree& chatters_store , ValueTree& chatter_store)
- {
- int item_idx = sortedChildIdx(chatters_store , chatter_store) ;
- ChatListItem* a_list_item = new ChatListItem(chatter_store) ;
- DEBUG_TRACE_ADD_CHAT_LIST_ITEM
- const MessageManagerLock mmLock ; addAndMakeVisible(a_list_item , item_idx) ;
- refresh() ;
- }
- void ChatList::valueTreeChildRemoved(ValueTree& chatters_store , ValueTree& chatter_store)
- {
- int item_idx = sortedChildIdx(chatters_store , chatter_store) ;
- Component* a_list_item = getChildComponent(item_idx) ;
- DEBUG_TRACE_REMOVE_CHAT_LIST_ITEM
- const MessageManagerLock mmLock ; delete a_list_item ;
- refresh() ;
- }
- int ChatList::sortedChildIdx(ValueTree& chatters_store , ValueTree& chatter_store)
- {
- StringArray nicks = AvCaster::GetChatNicks(chatters_store) ;
- String nick = STRING(chatter_store[CONFIG::CHAT_NICK_ID]) ;
- int item_idx = nicks.indexOf(nick) + GUI::N_STATIC_CHATLIST_CHILDREN ;
- DEBUG_TRACE_LOCATE_SORTED_CHILD
- return item_idx ;
- }
- void ChatList::refresh()
- {
- String server_id = String(this->chattersStore.getParent().getType()) ;
- chattersGroup->setText(server_id) ;
- int n_list_items = getNumChildComponents() - GUI::N_STATIC_CHATLIST_CHILDREN ;
- int list_h = GUI::EMPTY_CHATLIST_H + (n_list_items * GUI::PADDED_CHATLIST_ITEM_H) ;
- int list_item_x = GUI::PAD3 ;
- int list_item_y = GUI::PAD4 ;
- DEBUG_TRACE_RESIZE_CHAT_LIST
- setSize(GUI::CHATLIST_W , list_h) ;
- // arrange list entries
- for (int item_n = 0 ; item_n < n_list_items ; ++item_n)
- {
- int child_n = item_n + GUI::N_STATIC_CHATLIST_CHILDREN ;
- Component* list_item = getChildComponent(child_n) ;
- DEBUG_TRACE_MOVE_CHAT_LIST_ITEM
- list_item->setTopLeftPosition(list_item_x , list_item_y) ;
- list_item_y += GUI::PADDED_CHATLIST_ITEM_H ;
- }
- (static_cast<Chat*>(getParentComponent()))->refresh() ;
- }
- //[/MiscUserCode]
- //==============================================================================
- #if 0
- /* -- Introjucer information section --
- This is where the Introjucer stores the metadata that describe this GUI layout, so
- make changes in here at your peril!
- BEGIN_JUCER_METADATA
- <JUCER_COMPONENT documentType="Component" className="ChatList" componentName=""
- parentClasses="public Component, public ValueTree::Listener"
- constructorParams="ValueTree chatters_store" variableInitialisers="chattersStore(chatters_store)"
- snapPixels="4" snapActive="1" snapShown="1" overlayOpacity="0.330"
- fixedSize="0" initialWidth="128" initialHeight="48">
- <BACKGROUND backgroundColour="0">
- <ROUNDRECT pos="4 10 120 34" cornerSize="4" fill="solid: ff202020" hasStroke="0"/>
- </BACKGROUND>
- <GROUPCOMPONENT name="chattersGroup" id="49d2cfd1b8779149" memberName="chattersGroup"
- virtualName="" explicitFocusOrder="0" pos="0 0 128 48" outlinecol="ffffffff"
- textcol="ffffffff" title="(connecting)"/>
- <GENERICCOMPONENT name="dummyChatListItem" id="56b906e64be2f4b6" memberName="dummyChatListItem"
- virtualName="" explicitFocusOrder="0" pos="12 16 104 24" class="ChatListItem"
- params="ValueTree::invalid"/>
- </JUCER_COMPONENT>
- END_JUCER_METADATA
- */
- #endif
- //[EndFile] You can add extra defines here...
- //[/EndFile]
|