Thread Tools Display Modes
01-07-10, 04:04 PM   #1
Bacardii
A Deviate Faerie Dragon
 
Bacardii's Avatar
Join Date: Jun 2006
Posts: 10
Chat Windows

Hello ~ I was wondering if I could make a slightly odd request.

I know we kinda have a plug in that does what I'm looking for, but not exactly.

What I would like is to have the left most (primary) chat panel be broken into 2 windows. Sorta like all our duel stat plug-ins. This way I can have all the 'normal' chat going on in one half of the window, and guild chat going on in the second half of the window.

If there is a way that I can do this, just let me know - I will admit to being pretty nub when it comes to the UI set up.
 
01-07-10, 05:37 PM   #2
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
You could just add a guild chat tab to the window. That said, trying to put two chat windows side by side in that space would almost certain result in two windows far too narrow to be very usable.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
01-07-10, 11:37 PM   #3
Bacardii
A Deviate Faerie Dragon
 
Bacardii's Avatar
Join Date: Jun 2006
Posts: 10
Turned out to be a moot point anyway. Main chat window only shrinks so much. Ah well.
 
01-07-10, 11:47 PM   #4
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
What is it that the guildchat window not do that you would like it to do ? Perhaps it is something I could add to it or if its not something I feel should be in it in general I could show you what you need to do to do what you want.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
01-08-10, 12:38 AM   #5
Seer
A Molten Giant
Join Date: Dec 2007
Posts: 649
Originally Posted by spiel2001 View Post
You could just add a guild chat tab to the window. That said, trying to put two chat windows side by side in that space would almost certain result in two windows far too narrow to be very usable.
An option would be not side by side but above/below. Won't be a good thing either in a chattery guild..
__________________
Take it as you want or leave it as it is.
 
01-12-10, 04:37 AM   #6
gman265
Premium Member
 
gman265's Avatar
Join Date: May 2008
Posts: 35
Originally Posted by Bacardii View Post
Hello ~ I was wondering if I could make a slightly odd request.

I know we kinda have a plug in that does what I'm looking for, but not exactly.

What I would like is to have the left most (primary) chat panel be broken into 2 windows. Sorta like all our duel stat plug-ins. This way I can have all the 'normal' chat going on in one half of the window, and guild chat going on in the second half of the window.

If there is a way that I can do this, just let me know - I will admit to being pretty nub when it comes to the UI set up.

I made a slight change to the guildchat plugin ( Shhhh.. don't tel Xrystal ) to show party and party leader chat inside with the guildchat. Just edit the nUI_Infopanel_Guildchat.lua file and add the lines in blue. You don't have to use Party chat, like I have set up. You can other types of chat. You just have to make sure you have the naming set correctly.

MAKE SURE YOU ALWAYS BACKUP FILES BEFORE EDITING THEM IN ANY WAY.

Code:
-- clean up the guildchat frame
		
			ChatFrame_RemoveAllChannels( gcframe );
			ChatFrame_RemoveAllMessageGroups( gcframe );
   			ChatFrame_AddMessageGroup(gcframe, "GUILD");
       		        ChatFrame_AddMessageGroup(gcframe, "GUILD_OFFICER");
   			ChatFrame_AddMessageGroup(gcframe, "GUILD_ACHIEVEMENT");
   			ChatFrame_AddMessageGroup(gcframe, "PARTY");
   			ChatFrame_AddMessageGroup(gcframe, "PARTY_LEADER");

I know the plugin is called guildchat, but maybe Xrystal can add an option to select other types of chat.

-gman
 
01-12-10, 07:43 AM   #7
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Psst, thats why I made a Chat Plugin :P That works like a separate chat window on the right hand side and doesn't reset any of the settings made by the user. It won't give that little bit of guild information but for those that want an extra chat window for whatever they want its ideal.

Originally Posted by gman265 View Post
I made a slight change to the guildchat plugin ( Shhhh.. don't tel Xrystal ) to show party and party leader chat inside with the guildchat. Just edit the nUI_Infopanel_Guildchat.lua file and add the lines in blue. You don't have to use Party chat, like I have set up. You can other types of chat. You just have to make sure you have the naming set correctly.

MAKE SURE YOU ALWAYS BACKUP FILES BEFORE EDITING THEM IN ANY WAY.

Code:
-- clean up the guildchat frame
		
			ChatFrame_RemoveAllChannels( gcframe );
			ChatFrame_RemoveAllMessageGroups( gcframe );
   			ChatFrame_AddMessageGroup(gcframe, "GUILD");
       		        ChatFrame_AddMessageGroup(gcframe, "GUILD_OFFICER");
   			ChatFrame_AddMessageGroup(gcframe, "GUILD_ACHIEVEMENT");
   			ChatFrame_AddMessageGroup(gcframe, "PARTY");
   			ChatFrame_AddMessageGroup(gcframe, "PARTY_LEADER");

I know the plugin is called guildchat, but maybe Xrystal can add an option to select other types of chat.

-gman
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
03-19-10, 01:33 PM   #8
loogielv
A Deviate Faerie Dragon
Join Date: Jan 2010
Posts: 11
Originally Posted by Xrystal View Post
Psst, thats why I made a Chat Plugin :P That works like a separate chat window on the right hand side and doesn't reset any of the settings made by the user. It won't give that little bit of guild information but for those that want an extra chat window for whatever they want its ideal.
sorry if i'm being dense here, but what is the chat plugin? are you referring to the guild chat infopanel addon? or is there another way to have guild chat in the chat frame? i would love to remove the guildchat info panel and have a way to cycle between normal chat, and guild chat, and whispers, all in the chat frame. is this possible?
 
03-19-10, 03:58 PM   #9
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Sorry, let me explain further. I have 3 different chat plugins I wrote.

nUI_InfoPanel_GuildChat - Holds guild related chat messages by default. On login it will reset the channels and set up guild messages by default.

nUI_InfoPanel_Whispers - Holds whisper related chat messages by default. On login it will reset the channels and set up whisper ones only.

nUI_InfoPanel_Chat - Acts like a second chat window and will keep the changes you make when adding channels and stuff.

So,

If you want a second chat window to store all your chats ( although not in separate tabs quite yet as I haven't figured out how that works ) then you might want to try the Chat version.

If you want to have separate guild and whisper messages then download the Whispers and GuildChat versions which will each have a separate infopanel to hold their chats in.

Bear in mind though that where these addons create new chat frames if you turn them off before removing the frames ( I added that feature to the addons in question ) you will end up with floating frames. Just drag them to the main chat frame to dock them or remove them manually.

I'm trying to find another way to handle this and so far the only way I can think of is to kill the frames on log out and recreate them on login. So that will be one of my next changes to those addons when I finish with my current task.

However, the actual idea you are thinking of is something like WiM which I know Scott wants to add at some point into nUI.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818

Last edited by Xrystal : 03-19-10 at 04:03 PM.
 
03-19-10, 04:03 PM   #10
loogielv
A Deviate Faerie Dragon
Join Date: Jan 2010
Posts: 11
great info, thank you. I think I need the chat panel then. cuz I currently use both the whisper and the guild one, but dont like having 2 extra info panels right in between my most used panels. thanks so much. I'd do anything to have these on the chat panel side, instead of the info panel though. no way, huh?
 
03-19-10, 04:06 PM   #11
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Originally Posted by loogielv View Post
great info, thank you. I think I need the chat panel then. cuz I currently use both the whisper and the guild one, but dont like having 2 extra info panels right in between my most used panels. thanks so much. I'd do anything to have these on the chat panel side, instead of the info panel though. no way, huh?
Not with the current layout. In nUI6 Scott is setting up 2 info panels and will allow users to choose which plugins go where and in which order. So something for you to look forward to.

The simplest option though for you would be to manually create the chat windows yourself in the normal chat window with or without the infopanel plugins. Set one with Guild related channels, one with Whisper channels and the other with whatever else you may want to separate. If that works along the way you wanted then you don't need the plugins

I use it all the time for things like Raid Chat and Party Chat etc.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
03-19-10, 04:07 PM   #12
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Xrystal's correct... you can do that already just by right clicking the settings tab for the chat frame and adding new channels to it.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-19-10, 04:15 PM   #13
loogielv
A Deviate Faerie Dragon
Join Date: Jan 2010
Posts: 11
Originally Posted by spiel2001 View Post
Xrystal's correct... you can do that already just by right clicking the settings tab for the chat frame and adding new channels to it.
whoa whoa whoa. wait a minute. you gotta be kidding. the whole time i've been able to do this?

i thought adding channels would only add more channels to the chat box. for instance, i could choose not to display trade chat, or only display raid, party, guild, whispers etc. you're saying I could have my chat panel open to normal chat that has everything, then an entirely new chat window, or tab or whatever that has only whispers? or guild, or whatever?

if so, why make the other addons Xrystal? just in case someone wanted both open at the same time?
 
03-19-10, 04:22 PM   #14
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Originally Posted by loogielv View Post
if so, why make the other addons Xrystal? just in case someone wanted both open at the same time?
Exactly... guild chat in one window, raid chat in the other, both open at the same time, etc.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-19-10, 04:24 PM   #15
loogielv
A Deviate Faerie Dragon
Join Date: Jan 2010
Posts: 11
Originally Posted by spiel2001 View Post
Exactly... guild chat in one window, raid chat in the other, both open at the same time, etc.
i now feel completely retarded. sorry to waste everyone's time, i'll do that as soon as I get home. before I even say hi to the kids.
 
03-19-10, 04:46 PM   #16
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
~lol~

Say hi to the kids first... then... yeah.

~grin~
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-19-10, 04:48 PM   #17
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Yes that was precisely the reason for it. GuildChat was a request from someone that wanted to be able to see his guild chatting regardless of what other chat windows he had open. The someone asked about whispers so the Whispers plugin was born and then someone asked about customising them to add other channels ... so Chat plugin was born. Whilst you can only have one of the plugins visible at a time you can have one of them visible on the right and the normal chat window on the left
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
03-20-10, 09:28 AM   #18
Chmee
A Molten Giant
Join Date: Dec 2006
Posts: 960
The upside to the default chat interface is that you can create several tabs, each with different setups - guild chat, raid/party chat, whispers, what have you. The downside is keeping track of all the conversations going on in the various tabs, since you can only see one at a time (unless you pull the tab out and put it elsewhere, but then you're cluttering up your main view of everything).
 
03-20-10, 09:41 AM   #19
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Yep, for now the alternative to toggling between chat tabs is to use one of the plugins for the right hand side and use the normal chat window on the left side.

So, say, you were doing a raid and needed to see the raid chatting going on. You could then have your raid chat tab selected on the left hand side. Now, if you also wanted to see all your whispers for friends and the odd snidy comments about the raid leader and that dpser that isn't pulling their weight or the healer that isn't healing you .. etc rofl .. yes, I know it happens rofl , then you could use the Whisper chat plugin on the right hand side.

Obviously if you also used Skada or Omen/recount you would have to wait until the fighting was over before checking what whispers you missed but then again you should be paying attention to the fight than whisper in the first place :P
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Suggestion Box » Chat Windows


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off